| Index: tools/testing/dart/status_file_parser.dart
|
| diff --git a/tools/testing/dart/status_file_parser.dart b/tools/testing/dart/status_file_parser.dart
|
| index ef0f81914dd7f5c2c944372f8612d37203f0b50e..c3b70d8cca6496b726e221fd52fbf9454d808bb8 100644
|
| --- a/tools/testing/dart/status_file_parser.dart
|
| +++ b/tools/testing/dart/status_file_parser.dart
|
| @@ -77,7 +77,7 @@ void ReadConfigurationInto(path, sections, onDone) {
|
| Match match = StripComment.firstMatch(line);
|
| line = (match == null) ? "" : match[0];
|
| line = line.trim();
|
| - if (line.isEmpty()) continue;
|
| + if (line.isEmpty) continue;
|
|
|
| match = HeaderPattern.firstMatch(line);
|
| if (match != null) {
|
| @@ -177,7 +177,7 @@ class TestExpectations {
|
|
|
| // If no expectations were found the expectation is that the test
|
| // passes.
|
| - if (result.isEmpty()) {
|
| + if (result.isEmpty) {
|
| result.add(PASS);
|
| }
|
| return result;
|
|
|