Skip to content

Commit bf8482d

Browse files
author
Gabriel Comte
committed
Fix getblockstats test
1 parent b7013f2 commit bf8482d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

integration_test/src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -315,7 +315,7 @@ fn test_get_block_stats(cl: &Client) {
315315
let header = cl.get_block_header(&tip_hash).unwrap();
316316
let stats = cl.get_block_stats(tip).unwrap();
317317
assert_eq!(header.block_hash(), stats.block_hash);
318-
assert_eq!(header.time, stats.time);
318+
assert_eq!(header.time, stats.time as u32);
319319
assert_eq!(tip, stats.height);
320320
}
321321

0 commit comments

Comments
 (0)