Skip to content

Commit 5427897

Browse files
committed
test: remove dbg! statement
1 parent 5b9372a commit 5427897

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

roaring/tests/serialization.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ fn test_one() {
7272
fn test_array() {
7373
let original = (1000..3000).collect::<RoaringBitmap>();
7474
let new = serialize_and_deserialize(&original);
75-
assert_eq!(dbg!(original), dbg!(new));
75+
assert_eq!(original, new);
7676
}
7777

7878
#[test]

0 commit comments

Comments
 (0)