Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion test/cdc_2phase_tb.sv
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ module cdc_2phase_tb;
end

// Mailbox with expected items on destination side.
mailbox #(int) dst_mbox = new();
mailbox #(integer) dst_mbox = new();
int num_sent = 0;
int num_received = 0;
int num_failed = 0;
Expand Down
2 changes: 1 addition & 1 deletion test/cdc_fifo_tb.sv
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ module cdc_fifo_tb;
cdc_fifo_2phase #(.T(logic [31:0]), .LOG_DEPTH(DEPTH)) i_dut (.*);

// Mailbox with expected items on destination side.
mailbox #(int) dst_mbox = new();
mailbox #(integer) dst_mbox = new();
int num_sent = 0;
int num_received = 0;
int num_failed = 0;
Expand Down
Loading