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

Unified Diff: tests/corelib/int_round_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/int_round_test.dart
diff --git a/tests/corelib/int_round_test.dart b/tests/corelib/int_round_test.dart
index df71b3c68fa9327d566a9890902cfba97d9a239a..0bd7ec6ed373d27188c15e6f504088bd9f9a2c5d 100644
--- a/tests/corelib/int_round_test.dart
+++ b/tests/corelib/int_round_test.dart
@@ -12,14 +12,14 @@ main() {
Expect.equals(0x123456789AB, 0x123456789AB.round());
Expect.equals(0x123456789ABCDEF, 0x123456789ABCDEF.round());
Expect.equals(0x123456789ABCDEF0123456789ABCDEF0123456789ABCDEF,
- 0x123456789ABCDEF0123456789ABCDEF0123456789ABCDEF.round());
+ 0x123456789ABCDEF0123456789ABCDEF0123456789ABCDEF.round());
Expect.equals(-1, -1.round());
Expect.equals(-0x1234, -0x1234.round());
Expect.equals(-0x12345678, -0x12345678.round());
Expect.equals(-0x123456789AB, -0x123456789AB.round());
Expect.equals(-0x123456789ABCDEF, -0x123456789ABCDEF.round());
Expect.equals(-0x123456789ABCDEF0123456789ABCDEF0123456789ABCDEF,
- -0x123456789ABCDEF0123456789ABCDEF0123456789ABCDEF.round());
+ -0x123456789ABCDEF0123456789ABCDEF0123456789ABCDEF.round());
Expect.isTrue(0.round() is int);
Expect.isTrue(1.round() is int);
@@ -27,8 +27,8 @@ main() {
Expect.isTrue(0x12345678.round() is int);
Expect.isTrue(0x123456789AB.round() is int);
Expect.isTrue(0x123456789ABCDEF.round() is int);
- Expect.isTrue(
- 0x123456789ABCDEF0123456789ABCDEF0123456789ABCDEF.round() is int);
+ Expect
+ .isTrue(0x123456789ABCDEF0123456789ABCDEF0123456789ABCDEF.round() is int);
Expect.isTrue(-1.round() is int);
Expect.isTrue(-0x1234.round() is int);
Expect.isTrue(-0x12345678.round() is int);
@@ -36,4 +36,4 @@ main() {
Expect.isTrue(-0x123456789ABCDEF.round() is int);
Expect.isTrue(
-0x123456789ABCDEF0123456789ABCDEF0123456789ABCDEF.round() is int);
-}
+}

Powered by Google App Engine
This is Rietveld 408576698