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

Unified Diff: sdk/lib/_internal/pub/test/transformer/fails_to_load_a_non_existent_transform_test.dart

Issue 164773003: Change ScheduledProcess's output streams over to be ScheduledStreams. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: code review Created 6 years, 10 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/transformer/fails_to_load_a_non_existent_transform_test.dart
diff --git a/sdk/lib/_internal/pub/test/transformer/fails_to_load_a_non_existent_transform_test.dart b/sdk/lib/_internal/pub/test/transformer/fails_to_load_a_non_existent_transform_test.dart
index f961bae9106a19bfa3968f7e0ece893371b41e82..44dd846637d653d65a61ebe412c57fa5bb1f6587 100644
--- a/sdk/lib/_internal/pub/test/transformer/fails_to_load_a_non_existent_transform_test.dart
+++ b/sdk/lib/_internal/pub/test/transformer/fails_to_load_a_non_existent_transform_test.dart
@@ -21,8 +21,8 @@ main() {
]).create();
var pub = startPubServe();
- expect(pub.nextErrLine(), completion(equals(
- 'Transformer library "package:myapp/transform.dart" not found.')));
+ pub.stderr.expect(
+ 'Transformer library "package:myapp/transform.dart" not found.');
pub.shouldExit(1);
});
}

Powered by Google App Engine
This is Rietveld 408576698