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

Unified Diff: tests/language/const_locals_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/const_locals_test.dart
diff --git a/tests/language/const_locals_test.dart b/tests/language/const_locals_test.dart
index 8261b15f21f2a19a337e0a9da74f63e0db202770..00fc637df38227adcad9fb523a4c4b022660bf0d 100644
--- a/tests/language/const_locals_test.dart
+++ b/tests/language/const_locals_test.dart
@@ -16,7 +16,7 @@ class ConstFoo {
main() {
const MIN = 2 - 1;
const MAX = N * 2;
- const MASK = (1 << (MAX - MIN + 1)) - 1; // 65535.
+ const MASK = (1 << (MAX - MIN + 1)) - 1; // 65535.
Expect.equals(1, MIN);
Expect.equals(16, MAX);
Expect.equals(65535, MASK);
@@ -29,6 +29,3 @@ main() {
Expect.identical(cf2, cf3);
Expect.isFalse(identical(cf2, cf1));
}
-
-
-

Powered by Google App Engine
This is Rietveld 408576698