Chromium Code Reviews| Index: tests/language/parameter_initializer_test.dart |
| =================================================================== |
| --- tests/language/parameter_initializer_test.dart (revision 12414) |
| +++ tests/language/parameter_initializer_test.dart (working copy) |
| @@ -14,7 +14,7 @@ |
| obj = new Foo.subtype(7); |
| Expect.equals(7, obj.x); |
| - obj = new Foo.optional(x: 111); |
| + obj = new Foo.optional(111); |
| Expect.equals(111, obj.x); |
| obj = new Foo.optional(); |