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

Unified Diff: tests/language_strong/guess_cid_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_strong/guess_cid_test.dart
diff --git a/tests/language_strong/guess_cid_test.dart b/tests/language_strong/guess_cid_test.dart
index 3759cb92423f3c644d62ef836210f5e6aed277b7..6bfca937d10ce0ae75f203424e05912baa6b2110 100644
--- a/tests/language_strong/guess_cid_test.dart
+++ b/tests/language_strong/guess_cid_test.dart
@@ -17,17 +17,17 @@ main() {
Expect.equals(3, compareInt(3));
Expect.equals(-2, compareInt(-2));
Expect.equals(0, compareInt(-1));
-
+
Expect.equals(3, binOpInt(3, 3));
Expect.equals(0, binOpInt(-2, -2));
-
+
Expect.equals(3.0, binOpDouble(3.0, 3.0));
Expect.equals(0.0, binOpDouble(-2.0, -2.0));
-
+
Expect.equals(3.0, compareDouble(3.0));
Expect.equals(-2.0, compareDouble(-2.0));
Expect.equals(0.0, compareDouble(-1.0));
-
+
testOSR();
}

Powered by Google App Engine
This is Rietveld 408576698