Index: tests/lib/convert/codec2_test.dart |
diff --git a/tests/lib/convert/codec2_test.dart b/tests/lib/convert/codec2_test.dart |
index e8fa875df22eaf7f11a272ab9c4799572e7fc77b..6c22697eecab94045bd8a97e1e03bcd62e4b0d09 100644 |
--- a/tests/lib/convert/codec2_test.dart |
+++ b/tests/lib/convert/codec2_test.dart |
@@ -8,8 +8,27 @@ import 'package:expect/expect.dart'; |
main() { |
final RAW = '["122รง",50,50,231]'; |
- final ENCODED = const [91, 34, 49, 50, 50, 195, 167, 34, 44, |
- 53, 48, 44, 53, 48, 44, 50, 51, 49, 93]; |
+ final ENCODED = const [ |
+ 91, |
+ 34, |
+ 49, |
+ 50, |
+ 50, |
+ 195, |
+ 167, |
+ 34, |
+ 44, |
+ 53, |
+ 48, |
+ 44, |
+ 53, |
+ 48, |
+ 44, |
+ 50, |
+ 51, |
+ 49, |
+ 93 |
+ ]; |
Expect.listEquals(ENCODED, UTF8.encode(RAW)); |
Expect.equals(RAW, UTF8.decode(ENCODED)); |