Skip to content

Commit 2374ac2

Browse files
committed
Switch assert_eq! order, since &[T] == Vec<T> no longer compiles
Signed-off-by: Anders Kaseorg <[email protected]>
1 parent c3b7a38 commit 2374ac2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/utils/bitstream.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -228,6 +228,6 @@ mod test {
228228
let _ = writer.write_bits(datum, 10);
229229
}
230230
}
231-
assert_eq!(&data, &compressed_data)
231+
assert_eq!(&compressed_data, &data)
232232
}
233233
}

0 commit comments

Comments
 (0)