Index: tests/language/no_such_method_negative_test.dart |
diff --git a/tests/language/no_such_method_negative_test.dart b/tests/language/no_such_method_negative_test.dart |
index 5b3642ee83adc19e1111c5b890d647293a2dcefc..7abd82684b3a6cd77968f93e6b3910dbb70c46fa 100644 |
--- a/tests/language/no_such_method_negative_test.dart |
+++ b/tests/language/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 |
} |
} |