rename bitmatrix test cases mod

This commit is contained in:
Henry Schimke
2023-01-11 16:02:26 -06:00
parent f037a743e7
commit fde23934f6
13 changed files with 51 additions and 32 deletions

View File

@@ -174,7 +174,7 @@ impl Code39Writer {
* Tests {@link Code39Writer}.
*/
mod Code39WriterTestCase {
use crate::{common::BitMatrixTestCase, oned::Code39Writer, BarcodeFormat, Writer};
use crate::{common::bit_matrix_test_case, oned::Code39Writer, BarcodeFormat, Writer};
#[test]
fn testEncode() {
@@ -248,7 +248,7 @@ mod Code39WriterTestCase {
.expect("must encode");
assert_eq!(
expected,
BitMatrixTestCase::matrix_to_string(&result),
bit_matrix_test_case::matrix_to_string(&result),
"{}",
input
);