| Index: sdk/lib/_internal/pub/test/snapshot/prints_errors_for_broken_snapshots_test.dart
|
| diff --git a/sdk/lib/_internal/pub/test/snapshot/prints_errors_for_broken_snapshots_test.dart b/sdk/lib/_internal/pub/test/snapshot/prints_errors_for_broken_snapshots_test.dart
|
| index 1c8af8f1d6871bdfa091b247f97ef4ab760649d9..ee90ff3bc50d949505f72105193d6e9546e90ba8 100644
|
| --- a/sdk/lib/_internal/pub/test/snapshot/prints_errors_for_broken_snapshots_test.dart
|
| +++ b/sdk/lib/_internal/pub/test/snapshot/prints_errors_for_broken_snapshots_test.dart
|
| @@ -16,12 +16,20 @@ main() {
|
| servePackages([
|
| packageMap("foo", "1.2.3"),
|
| packageMap("bar", "1.2.3")
|
| - ], contents: [
|
| - d.dir("bin", [
|
| - d.file("hello.dart", "void main() { no closing brace"),
|
| - d.file("goodbye.dart", "void main() { no closing brace"),
|
| - ])
|
| - ]);
|
| + ], contents: {
|
| + 'foo-1.2.3': [
|
| + d.dir("bin", [
|
| + d.file("hello.dart", "void main() { no closing brace"),
|
| + d.file("goodbye.dart", "void main() { no closing brace"),
|
| + ])
|
| + ],
|
| + 'bar-1.2.3': [
|
| + d.dir("bin", [
|
| + d.file("hello.dart", "void main() { no closing brace"),
|
| + d.file("goodbye.dart", "void main() { no closing brace"),
|
| + ])
|
| + ]
|
| + });
|
|
|
| d.appDir({"foo": "1.2.3", "bar": "1.2.3"}).create();
|
|
|
|
|