Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(234)

Unified Diff: pkg/testing/lib/src/test_dart/status_file_parser.dart

Issue 2743423009: Run dartfmt on remaining unformated pkg packages (Closed)
Patch Set: Run dartfmt on remaining unformated pkg packages Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « pkg/testing/lib/src/test_dart.dart ('k') | pkg/testing/lib/src/test_description.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
« no previous file with comments | « pkg/testing/lib/src/test_dart.dart ('k') | pkg/testing/lib/src/test_description.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698