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 2d83d22936396c8155d1f69da001437be0c958ee..276d325d9cfd6a50413d7fa59b4c5839e2379d48 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 a dependency.'))); |
+ pub.stderr.expect(anything); |
+ pub.stderr.expect('"transformers.foo" refers to a package that\'s not a ' |
+ 'dependency.'); |
pub.shouldExit(1); |
}); |
} |