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

Unified Diff: sdk/lib/_internal/pub/test/serve/utils.dart

Issue 52853004: Pass in "mode" to transformer plugins. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: "transformer" -> "configuration". Created 7 years, 2 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
Index: sdk/lib/_internal/pub/test/serve/utils.dart
diff --git a/sdk/lib/_internal/pub/test/serve/utils.dart b/sdk/lib/_internal/pub/test/serve/utils.dart
index 1013aec04e2195e43f1b982221f1b38273b3b8ba..eb412a796750904d53aa3a06e65c95580664d80f 100644
--- a/sdk/lib/_internal/pub/test/serve/utils.dart
+++ b/sdk/lib/_internal/pub/test/serve/utils.dart
@@ -187,7 +187,7 @@ void postShould405(String urlPath) {
void waitForBuildSuccess() {
nextLine() {
return _pubServer.nextLine().then((line) {
- if (line.contains("successfully")) return;
+ if (line.contains("successfully")) return null;
// This line wasn't it, so ignore it and keep trying.
return nextLine();

Powered by Google App Engine
This is Rietveld 408576698