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

Unified Diff: tests/language_strong/identical_closure_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/identical_closure_test.dart
diff --git a/tests/language_strong/identical_closure_test.dart b/tests/language_strong/identical_closure_test.dart
index fc1a556e3801bffeccae802124208d452343a790..62f47d0fabfc6d11957173b695eceb3d4bd9611f 100644
--- a/tests/language_strong/identical_closure_test.dart
+++ b/tests/language_strong/identical_closure_test.dart
@@ -21,15 +21,15 @@ main() {
Expect.isFalse(myIdentical(42.0, 41.0));
// Mint (2^45).
- Expect.isTrue(myIdentical(35184372088832,35184372088832));
- Expect.isFalse(myIdentical(35184372088832,35184372088831));
+ Expect.isTrue(myIdentical(35184372088832, 35184372088832));
+ Expect.isFalse(myIdentical(35184372088832, 35184372088831));
// Different types.
Expect.isFalse(myIdentical("hello", 41));
// Points.
- var p = new Point(1,1);
- var q = new Point(1,1);
+ var p = new Point(1, 1);
+ var q = new Point(1, 1);
Expect.isFalse(myIdentical(p, q));
// Strings.

Powered by Google App Engine
This is Rietveld 408576698