Index: tests/compiler/dart2js/patch_test.dart |
diff --git a/tests/compiler/dart2js/patch_test.dart b/tests/compiler/dart2js/patch_test.dart |
index 3397230e6d44ed50506ec43b4240f728eeb85cbb..0d510cd081fd6a18fd0531c37629a19e84ca4c22 100644 |
--- a/tests/compiler/dart2js/patch_test.dart |
+++ b/tests/compiler/dart2js/patch_test.dart |
@@ -73,12 +73,12 @@ testPatchGetter() { |
var compiler = applyPatch( |
""" |
class Class { |
- external int get field(); |
+ external int get field; |
} |
""", |
""" |
patch class Class { |
- patch int get field() => 5; |
+ patch int get field => 5; |
} |
"""); |
var container = ensure(compiler, "Class", compiler.coreLibrary.find); |