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

Unified Diff: tests/language/vm/optimized_list_constructor_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/vm/optimized_list_constructor_test.dart
diff --git a/tests/language/vm/optimized_list_constructor_test.dart b/tests/language/vm/optimized_list_constructor_test.dart
index a6e27ce15769150c5ed9bca24d02a3b584808eee..7c4b4bf0fd3ba18f25ca7b7be76709a1c586ebaa 100644
--- a/tests/language/vm/optimized_list_constructor_test.dart
+++ b/tests/language/vm/optimized_list_constructor_test.dart
@@ -11,11 +11,11 @@ import "package:expect/expect.dart";
test() {
try {
var r = new List<int>(-1);
- Expect.isTrue(false); // Unreachable.
+ Expect.isTrue(false); // Unreachable.
} on RangeError {
return true;
}
- Expect.isTrue(false); // Unreachable.
+ Expect.isTrue(false); // Unreachable.
}
main() {
@@ -23,4 +23,3 @@ main() {
Expect.isTrue(test());
}
}
-

Powered by Google App Engine
This is Rietveld 408576698