| Index: sdk/lib/_internal/pub/test/transformer/prints_a_transform_error_in_apply_test.dart
|
| diff --git a/sdk/lib/_internal/pub/test/transformer/prints_a_transform_error_in_apply_test.dart b/sdk/lib/_internal/pub/test/transformer/prints_a_transform_error_in_apply_test.dart
|
| index ba20fa961436448bf10ffc81b755b145bb3409a4..022206747c1cddc3d45c1862ef567e73f652f7fc 100644
|
| --- a/sdk/lib/_internal/pub/test/transformer/prints_a_transform_error_in_apply_test.dart
|
| +++ b/sdk/lib/_internal/pub/test/transformer/prints_a_transform_error_in_apply_test.dart
|
| @@ -43,10 +43,9 @@ main() {
|
| createLockFile('myapp', pkg: ['barback']);
|
|
|
| var server = pubServe();
|
| - expect(server.nextErrLine(),
|
| - completion(equals('Build error:')));
|
| - expect(server.nextErrLine(), completion(equals('Transform Rewrite on '
|
| - 'myapp|web/foo.txt threw error: oh no!')));
|
| + server.stderr.expect(emitsLines(
|
| + 'Build error:\n'
|
| + 'Transform Rewrite on myapp|web/foo.txt threw error: oh no!'));
|
| endPubServe();
|
| });
|
| }
|
|
|