Skip to content

Commit 1038c33

Browse files
fix: update expected hex output for scaled characters in converters_test
1 parent 6da5d81 commit 1038c33

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

test/converters_test.dart

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,12 @@ void main() {
1919
ScreenSize(width: badgeWidth, height: badgeHeight, name: ''),
2020
);
2121
List<String> expected = [
22-
"00C6C6C6C6FEC6C6C6C600",
23-
"0018180038181818183C00",
24-
"0018180038181818183C00",
25-
"00183C3C3C181800181800"
22+
"00666666667e6666666600", // 'H'
23+
"0010100030101010103800", // 'i'
24+
"0010100030101010103800", // 'i'
25+
"0010383838101000101000", // '!'
2626
];
27+
2728
expect(result, expected);
2829
});
2930

0 commit comments

Comments
 (0)