Chromium Code Reviews| Index: tests/standalone/io/file_test.dart |
| diff --git a/tests/standalone/io/file_test.dart b/tests/standalone/io/file_test.dart |
| index 794a9cf4714279d5d9e0ce759d469cc0ae2fc8f3..b76a9ded8b8624c4ad853b0676534dde1e6c7d0d 100644 |
| --- a/tests/standalone/io/file_test.dart |
| +++ b/tests/standalone/io/file_test.dart |
| @@ -10,7 +10,7 @@ |
| class MyListOfOneElement implements List { |
| int _value; |
| MyListOfOneElement(this._value); |
| - int get length() => 1; |
| + int get length => 1; |
| operator [](int index) => _value; |
| } |