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

Unified Diff: tests/corelib_strong/double_truncate_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_truncate_to_double_test.dart
diff --git a/tests/corelib_strong/double_truncate_to_double_test.dart b/tests/corelib_strong/double_truncate_to_double_test.dart
index 34f0179d47a77a0af1b2f76094ab8dd4cb4623cc..ebfc8bbef0d1b1f87a3a9aacbdde35b34e4a8c6d 100644
--- a/tests/corelib_strong/double_truncate_to_double_test.dart
+++ b/tests/corelib_strong/double_truncate_to_double_test.dart
@@ -44,8 +44,8 @@ main() {
Expect.equals(-double.MAX_FINITE, (-double.MAX_FINITE).truncateToDouble());
Expect.equals(double.INFINITY, double.INFINITY.truncateToDouble());
- Expect.equals(double.NEGATIVE_INFINITY,
- double.NEGATIVE_INFINITY.truncateToDouble());
+ Expect.equals(
+ double.NEGATIVE_INFINITY, double.NEGATIVE_INFINITY.truncateToDouble());
Expect.isTrue(double.NAN.truncateToDouble().isNaN);
Expect.isTrue(0.0.truncateToDouble() is double);
@@ -82,4 +82,4 @@ main() {
Expect.isTrue((-9007199254740991.0).truncateToDouble() is double);
Expect.isTrue((-9007199254740992.0).truncateToDouble() is double);
Expect.isTrue((-double.MAX_FINITE).truncateToDouble() is double);
-}
+}

Powered by Google App Engine
This is Rietveld 408576698