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

Unified Diff: tests/language/double_int_to_string_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/language/double_int_to_string_test.dart
diff --git a/tests/language/double_int_to_string_test.dart b/tests/language/double_int_to_string_test.dart
index 7ba8e27e3f1ff0eb4a8be2dbf92d4ca192997e4d..04c7ef7b8d9e90c9f323c83e6632a60fcd6e372a 100644
--- a/tests/language/double_int_to_string_test.dart
+++ b/tests/language/double_int_to_string_test.dart
@@ -9,12 +9,12 @@ main() {
Expect.equals("0.0", (0.0).toString());
Expect.equals("9.0", (9.0).toString());
Expect.equals("90.0", (90.0).toString());
- Expect.equals("111111111111111110000.0",
- (111111111111111111111.0).toString());
+ Expect.equals(
+ "111111111111111110000.0", (111111111111111111111.0).toString());
Expect.equals("-9.0", (-9.0).toString());
Expect.equals("-90.0", (-90.0).toString());
- Expect.equals("-111111111111111110000.0",
- (-111111111111111111111.0).toString());
+ Expect.equals(
+ "-111111111111111110000.0", (-111111111111111111111.0).toString());
Expect.equals("1000.0", (1000.0).toString());
Expect.equals("1000000000000000100.0", (1000000000000000128.0).toString());
}

Powered by Google App Engine
This is Rietveld 408576698