Chromium Code Reviews| Index: tests/language/src/ContextArgsWithDefaultsTest.dart |
| diff --git a/tests/language/src/ContextArgsWithDefaultsTest.dart b/tests/language/src/ContextArgsWithDefaultsTest.dart |
| index 08c36ac54b47a380ef383afe0e7cc2186b9f691d..272efc9a945110ea98b9b02da94b0810c998ebf6 100644 |
| --- a/tests/language/src/ContextArgsWithDefaultsTest.dart |
| +++ b/tests/language/src/ContextArgsWithDefaultsTest.dart |
| @@ -7,7 +7,7 @@ class ContextArgsWithDefaultsTest { |
| crasher(1, 'foo')(); |
| } |
| - static void crasher(int fixed, [String optional = '']) { |
| + static crasher(int fixed, [String optional = '']) { |
|
jimhug
2011/11/11 15:02:02
Oh my, that was an ugly test bug!
|
| return () { |
| Expect.equals(1, fixed); |
| Expect.equals('foo', optional); |