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

Unified Diff: sdk/lib/_internal/pub/test/transformer/fails_to_load_a_transform_from_a_non_dependency_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: update pubspecs 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_transform_from_a_non_dependency_test.dart
diff --git a/sdk/lib/_internal/pub/test/transformer/fails_to_load_a_transform_from_a_non_dependency_test.dart b/sdk/lib/_internal/pub/test/transformer/fails_to_load_a_transform_from_a_non_dependency_test.dart
index 04b80e285e6e62b236ddb2b15a080bbf5ab2f5b5..a679e0192d32c51f2247dbdf84aaf72535ff433f 100644
--- a/sdk/lib/_internal/pub/test/transformer/fails_to_load_a_transform_from_a_non_dependency_test.dart
+++ b/sdk/lib/_internal/pub/test/transformer/fails_to_load_a_transform_from_a_non_dependency_test.dart
@@ -22,9 +22,9 @@ main() {
var pub = startPubServe();
// Ignore the line containing the path to the pubspec.
- expect(pub.nextErrLine(), completes);
- expect(pub.nextErrLine(), completion(equals('"transformers.foo" refers to '
- 'a package that\'s not listed in "dependencies".')));
+ pub.stderr.expect(anything);
+ pub.stderr.expect('"transformers.foo" refers to a package that\'s not '
+ 'listed in "dependencies".');
pub.shouldExit(1);
});
}

Powered by Google App Engine
This is Rietveld 408576698