Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(59)

Unified Diff: tests/lib/convert/codec2_test.dart

Issue 2771453003: Format all tests. (Closed)
Patch Set: Format files Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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));

Powered by Google App Engine
This is Rietveld 408576698