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

Unified Diff: tests/compiler/dart2js_extra/deferred/deferred_function_test.dart

Issue 2345083003: dart2js: run dartfmt on tests (Closed)
Patch Set: revert another multipart test Created 4 years, 3 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/compiler/dart2js_extra/deferred/deferred_function_test.dart
diff --git a/tests/compiler/dart2js_extra/deferred/deferred_function_test.dart b/tests/compiler/dart2js_extra/deferred/deferred_function_test.dart
index 9bb7fd2ab3f43a22e828023accd6bb202c35cc33..27d780acfc4f6c31a4969e7705a2f512e6d6bcde 100644
--- a/tests/compiler/dart2js_extra/deferred/deferred_function_test.dart
+++ b/tests/compiler/dart2js_extra/deferred/deferred_function_test.dart
@@ -17,7 +17,9 @@ readFoo() {
}
main() {
- Expect.throws(() { lib.foo('a'); }, isError);
+ Expect.throws(() {
+ lib.foo('a');
+ }, isError);
Expect.throws(readFoo, isError);
int counter = 0;
asyncStart();
@@ -38,6 +40,8 @@ main() {
asyncEnd();
});
Expect.equals(0, counter);
- Expect.throws(() { lib.foo('a'); }, isError);
+ Expect.throws(() {
+ lib.foo('a');
+ }, isError);
Expect.throws(readFoo, isError);
}

Powered by Google App Engine
This is Rietveld 408576698