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

Unified Diff: sdk/lib/_internal/pub/test/oauth2/with_a_server_rejected_refresh_token_authenticates_again_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/oauth2/with_a_server_rejected_refresh_token_authenticates_again_test.dart
diff --git a/sdk/lib/_internal/pub/test/oauth2/with_a_server_rejected_refresh_token_authenticates_again_test.dart b/sdk/lib/_internal/pub/test/oauth2/with_a_server_rejected_refresh_token_authenticates_again_test.dart
index 8c78a3451b69debb52bb6c4781332b817cd25409..40780e0758ccfc4659326d6a291a6c93709542c7 100644
--- a/sdk/lib/_internal/pub/test/oauth2/with_a_server_rejected_refresh_token_authenticates_again_test.dart
+++ b/sdk/lib/_internal/pub/test/oauth2/with_a_server_rejected_refresh_token_authenticates_again_test.dart
@@ -41,7 +41,7 @@ main() {
});
});
- expect(pub.nextLine(), completion(matches(r'Uploading\.\.\.+')));
+ pub.stdout.expect(matches(r'Uploading\.\.\.+'));
Bob Nystrom 2014/02/14 17:55:02 Use the startsWith matcher.
nweiz 2014/02/18 22:01:10 Done.
authorizePub(pub, server, 'new access token');
server.handle('GET', '/api/packages/versions/new', (request) {

Powered by Google App Engine
This is Rietveld 408576698