| Index: pkg/testing/lib/src/test_dart/status_file_parser.dart
|
| diff --git a/pkg/testing/lib/src/test_dart/status_file_parser.dart b/pkg/testing/lib/src/test_dart/status_file_parser.dart
|
| index a7c00deb297e23b6381422e2a4f33daa82de2afa..b16bd4c1f1624e4afe4dc284010808177d88a1e2 100644
|
| --- a/pkg/testing/lib/src/test_dart/status_file_parser.dart
|
| +++ b/pkg/testing/lib/src/test_dart/status_file_parser.dart
|
| @@ -11,9 +11,7 @@ import "dart:io";
|
| import "path.dart";
|
| import "status_expression.dart";
|
|
|
| -import '../expectation.dart' show
|
| - Expectation,
|
| - ExpectationSet;
|
| +import '../expectation.dart' show Expectation, ExpectationSet;
|
|
|
| final RegExp SplitComment = new RegExp("^([^#]*)(#.*)?\$");
|
| final RegExp HeaderPattern = new RegExp(r"^\[([^\]]+)\]");
|
| @@ -49,9 +47,8 @@ class Section {
|
| }
|
| }
|
|
|
| -Future<TestExpectations> ReadTestExpectations(
|
| - List<String> statusFilePaths, Map environment,
|
| - ExpectationSet expectationSet) {
|
| +Future<TestExpectations> ReadTestExpectations(List<String> statusFilePaths,
|
| + Map environment, ExpectationSet expectationSet) {
|
| var testExpectations = new TestExpectations(expectationSet);
|
| return Future.wait(statusFilePaths.map((String statusFile) {
|
| return ReadTestExpectationsInto(testExpectations, statusFile, environment);
|
|
|