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

Unified Diff: tests/corelib_strong/double_floor_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_strong/double_floor_to_double_test.dart
diff --git a/tests/corelib_strong/double_floor_to_double_test.dart b/tests/corelib_strong/double_floor_to_double_test.dart
index e87f6e2d7632f8ac0ac6e824ea5cefce7a3339a8..e174d4c076989ac330db6c32d6a6ef86938b7464 100644
--- a/tests/corelib_strong/double_floor_to_double_test.dart
+++ b/tests/corelib_strong/double_floor_to_double_test.dart
@@ -44,8 +44,8 @@ main() {
Expect.equals(-double.MAX_FINITE, (-double.MAX_FINITE).floorToDouble());
Expect.equals(double.INFINITY, double.INFINITY.floorToDouble());
- Expect.equals(double.NEGATIVE_INFINITY,
- double.NEGATIVE_INFINITY.floorToDouble());
+ Expect.equals(
+ double.NEGATIVE_INFINITY, double.NEGATIVE_INFINITY.floorToDouble());
Expect.isTrue(double.NAN.floorToDouble().isNaN);
Expect.isTrue(0.0.floorToDouble() is double);
@@ -82,4 +82,4 @@ main() {
Expect.isTrue((-9007199254740991.0).floorToDouble() is double);
Expect.isTrue((-9007199254740992.0).floorToDouble() is double);
Expect.isTrue((-double.MAX_FINITE).floorToDouble() is double);
-}
+}

Powered by Google App Engine
This is Rietveld 408576698