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

Unified Diff: tests/language_strong/no_such_method_negative_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/no_such_method_negative_test.dart
diff --git a/tests/language_strong/no_such_method_negative_test.dart b/tests/language_strong/no_such_method_negative_test.dart
index 5b3642ee83adc19e1111c5b890d647293a2dcefc..7abd82684b3a6cd77968f93e6b3910dbb70c46fa 100644
--- a/tests/language_strong/no_such_method_negative_test.dart
+++ b/tests/language_strong/no_such_method_negative_test.dart
@@ -6,11 +6,13 @@
class NoSuchMethodNegativeTest {
NoSuchMethodNegativeTest() {}
- foo() { return 1; }
+ foo() {
+ return 1;
+ }
static testMain() {
var obj = new NoSuchMethodNegativeTest();
- return obj.moo(); // NoSuchMethodError thrown here
+ return obj.moo(); // NoSuchMethodError thrown here
}
}

Powered by Google App Engine
This is Rietveld 408576698