This commit is contained in:
Henry Schimke
2022-10-05 08:36:07 -05:00
parent 0bbeca01e2
commit b9383b35f3
3 changed files with 13 additions and 13 deletions

View File

@@ -403,7 +403,7 @@ fn testGS1ModeHeaderWithECI() {
#[test]
fn testAppendModeInfo() {
let mut bits = BitArray::new();
encoder::appendModeInfo(Mode::NUMERIC, &mut bits);
assert!(encoder::appendModeInfo(Mode::NUMERIC, &mut bits).is_ok());
assert_eq!(" ...X", bits.to_string());
}