Index: tests/lib_strong/convert/codec2_test.dart |
diff --git a/tests/lib_strong/convert/codec2_test.dart b/tests/lib_strong/convert/codec2_test.dart |
index e8ae6d998b83bc3acd8f91f36b2213c12b4ed7c8..9c2aee3bd5be234695d07f26ba604e20ae978f04 100644 |
--- a/tests/lib_strong/convert/codec2_test.dart |
+++ b/tests/lib_strong/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)); |