Index: utils/tests/string_encoding/dunit.dart |
diff --git a/utils/tests/string_encoding/dunit.dart b/utils/tests/string_encoding/dunit.dart |
index 02586efed67b54afb48bebc4f328cc5ee6fdd672..5a86113d7bff675b1decb0443116ac7f49af48f6 100644 |
--- a/utils/tests/string_encoding/dunit.dart |
+++ b/utils/tests/string_encoding/dunit.dart |
@@ -57,12 +57,12 @@ class TestSuite { |
} |
interface TestResult { |
- String get testDescription(); |
+ String get testDescription; |
} |
class PassedTest implements TestResult { |
const PassedTest(String this._testDescription); |
- String get testDescription() => _testDescription; |
+ String get testDescription => _testDescription; |
final String _testDescription; |
String toString() => _testDescription; |
} |
@@ -70,10 +70,10 @@ class PassedTest implements TestResult { |
class _ExceptionResult { |
const _ExceptionResult(String this._testDescription, var this._exception); |
- String get testDescription() => _testDescription; |
+ String get testDescription => _testDescription; |
final String _testDescription; |
- Object get exception() => _exception; |
+ Object get exception => _exception; |
final _exception; |
} |