Chromium Code Reviews

Unified Diff: utils/tests/pub/install/path/no_pubspec_test.dart

Issue 12263018: Fix path tests on windows. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Try escaping the paths in the error message RegExps. Created 7 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Index: utils/tests/pub/install/path/no_pubspec_test.dart
diff --git a/utils/tests/pub/install/path/no_pubspec_test.dart b/utils/tests/pub/install/path/no_pubspec_test.dart
index fc2cf4df8250b05fa37d7766e761625e429ac306..92f54fd891224286129c6f1415a798f4806b957e 100644
--- a/utils/tests/pub/install/path/no_pubspec_test.dart
+++ b/utils/tests/pub/install/path/no_pubspec_test.dart
@@ -25,8 +25,7 @@ main() {
]).scheduleCreate();
schedulePub(args: ['install'],
- error:
- new RegExp('Package "foo" doesn\'t have a pubspec.yaml file.'),
+ error: new RegExp('Package "foo" doesn\'t have a pubspec.yaml file.'),
exitCode: 1);
});
}

Powered by Google App Engine