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

Unified Diff: tests/corelib/double_round_to_double_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/corelib/double_round_to_double_test.dart
diff --git a/tests/corelib/double_round_to_double_test.dart b/tests/corelib/double_round_to_double_test.dart
index bedfe185b0d7b6c296d04528e7d8eac6e9821645..ae2d196a6e8a455ff7c2a03ebff8dbd38fac21eb 100644
--- a/tests/corelib/double_round_to_double_test.dart
+++ b/tests/corelib/double_round_to_double_test.dart
@@ -30,8 +30,8 @@ main() {
Expect.equals(-double.MAX_FINITE, (-double.MAX_FINITE).roundToDouble());
Expect.equals(double.INFINITY, double.INFINITY.roundToDouble());
- Expect.equals(double.NEGATIVE_INFINITY,
- double.NEGATIVE_INFINITY.roundToDouble());
+ Expect.equals(
+ double.NEGATIVE_INFINITY, double.NEGATIVE_INFINITY.roundToDouble());
Expect.isTrue(double.NAN.roundToDouble().isNaN);
Expect.isTrue(0.0.roundToDouble() is double);
@@ -59,4 +59,4 @@ main() {
Expect.isTrue((-1.0).roundToDouble() is double);
Expect.isTrue((-1.000000000000001).roundToDouble() is double);
Expect.isTrue((-double.MAX_FINITE).roundToDouble() is double);
-}
+}

Powered by Google App Engine
This is Rietveld 408576698