| Index: sdk/lib/_internal/pub/test/hosted/fail_gracefully_on_missing_package_test.dart
|
| diff --git a/sdk/lib/_internal/pub/test/hosted/fail_gracefully_on_missing_package_test.dart b/sdk/lib/_internal/pub/test/hosted/fail_gracefully_on_missing_package_test.dart
|
| index 18fed7faed369a702d5b885e091e9b88e9a30893..944e6ed59d51f23d04f78a350796cba55a52ed46 100644
|
| --- a/sdk/lib/_internal/pub/test/hosted/fail_gracefully_on_missing_package_test.dart
|
| +++ b/sdk/lib/_internal/pub/test/hosted/fail_gracefully_on_missing_package_test.dart
|
| @@ -16,8 +16,10 @@ main() {
|
|
|
| d.appDir({"foo": "1.2.3"}).create();
|
|
|
| - pubCommand(command, error: new RegExp(
|
| - r'Could not find package "foo" at http://127\.0\.0\.1:\d+\.$'));
|
| + pubCommand(command, error: new RegExp(r"""
|
| +Could not find package foo at http://127\.0\.0\.1:\d+\.
|
| +Depended on by:
|
| +- myapp""", multiLine: true));
|
| });
|
| });
|
| }
|
|
|