Skip to content

Commit bbf0532

Browse files
author
Gabriel Comte
committed
Fix getblockstats test
1 parent 890c211 commit bbf0532

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
@@ -314,7 +314,7 @@ fn test_get_block_stats(cl: &Client) {
314314
let header = cl.get_block_header(&tip_hash).unwrap();
315315
let stats = cl.get_block_stats(tip).unwrap();
316316
assert_eq!(header.block_hash(), stats.block_hash);
317-
assert_eq!(header.time, stats.time);
317+
assert_eq!(header.time, stats.time as u32);
318318
assert_eq!(tip, stats.height);
319319
}
320320

0 commit comments

Comments
 (0)