| 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 80da691d2c8edfb470b5e0a8368373e469e824ed..96e0ee7316b468815cdb5e7e21466d99bc26c22e 100644
|
| --- a/tools/testing/dart/status_file_parser.dart
|
| +++ b/tools/testing/dart/status_file_parser.dart
|
| @@ -41,7 +41,7 @@ String getFilename(String path) =>
|
|
|
| String getDirname(String path) =>
|
| new Directory(path).existsSync() ? path : '../$path';
|
| -
|
| +
|
| void ReadTestExpectationsInto(TestExpectations expectations,
|
| String statusFilePath,
|
| environment) {
|
| @@ -67,7 +67,7 @@ void ReadConfigurationInto(path, sections) {
|
| sections.add(current);
|
| String prefix = "";
|
|
|
| - String line;
|
| + String line;
|
| while ((line = lines.readLine()) != null) {
|
| Match match = StripComment.firstMatch(line);
|
| line = (match == null) ? "" : match[0];
|
|
|