mirror of
https://github.com/starovoid/rxing.git
synced 2026-07-28 05:12:34 +00:00
fix major issue with codabar
This commit is contained in:
@@ -172,8 +172,7 @@ mod CodaBarWriterTestCase {
|
||||
fn testEncode() {
|
||||
doTest(
|
||||
"B515-3/B",
|
||||
&format!(
|
||||
"{}{}{}{}{}{}{}{}{}{}",
|
||||
concat!(
|
||||
"00000",
|
||||
"1001001011",
|
||||
"0110101001",
|
||||
@@ -192,16 +191,13 @@ mod CodaBarWriterTestCase {
|
||||
fn testEncode2() {
|
||||
doTest(
|
||||
"T123T",
|
||||
&format!(
|
||||
"{}{}{}{}{}{}{}",
|
||||
"00000",
|
||||
"1011001001",
|
||||
"0101011001",
|
||||
"0101001011",
|
||||
"0110010101",
|
||||
"01011001001",
|
||||
"00000"
|
||||
),
|
||||
concat!("00000",
|
||||
"1011001001",
|
||||
"0101011001",
|
||||
"0101001011",
|
||||
"0110010101",
|
||||
"01011001001",
|
||||
"00000"),
|
||||
);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user