| Index: sdk/lib/_internal/pub/test/lish/archives_and_uploads_a_package_test.dart
|
| diff --git a/sdk/lib/_internal/pub/test/lish/archives_and_uploads_a_package_test.dart b/sdk/lib/_internal/pub/test/lish/archives_and_uploads_a_package_test.dart
|
| index def2c85acc346e9bdba6851e46334be72ccfca3d..e5497506cdc9f567e31b55cea97e000831fd5b3f 100644
|
| --- a/sdk/lib/_internal/pub/test/lish/archives_and_uploads_a_package_test.dart
|
| +++ b/sdk/lib/_internal/pub/test/lish/archives_and_uploads_a_package_test.dart
|
| @@ -32,10 +32,8 @@ main() {
|
| request.response.close();
|
| });
|
|
|
| - expect(pub.nextLine(), completion(matches(r'Uploading\.\.\.+')));
|
| -
|
| - expect(pub.nextLine(),
|
| - completion(equals('Package test_pkg 1.0.0 uploaded!')));
|
| + pub.stdout.expect(matches(r'Uploading\.\.\.+'));
|
| + pub.stdout.expect('Package test_pkg 1.0.0 uploaded!');
|
| pub.shouldExit(exit_codes.SUCCESS);
|
| });
|
|
|
|
|