Index: sdk/lib/_internal/pub_generated/test/global/activate/installs_dependencies_test.dart |
diff --git a/sdk/lib/_internal/pub/test/global/activate/installs_dependencies_test.dart b/sdk/lib/_internal/pub_generated/test/global/activate/installs_dependencies_test.dart |
similarity index 59% |
copy from sdk/lib/_internal/pub/test/global/activate/installs_dependencies_test.dart |
copy to sdk/lib/_internal/pub_generated/test/global/activate/installs_dependencies_test.dart |
index add1b82f4eff5edfd9b61ccf1bb29d36770b0d5d..f3bc479a4151d24eb3517b04851064915cc029a2 100644 |
--- a/sdk/lib/_internal/pub/test/global/activate/installs_dependencies_test.dart |
+++ b/sdk/lib/_internal/pub_generated/test/global/activate/installs_dependencies_test.dart |
@@ -10,14 +10,18 @@ main() { |
initConfig(); |
integration('activating a package installs its dependencies', () { |
servePackages((builder) { |
- builder.serve("foo", "1.0.0", deps: {"bar": "any"}); |
- builder.serve("bar", "1.0.0", deps: {"baz": "any"}); |
+ builder.serve("foo", "1.0.0", deps: { |
+ "bar": "any" |
+ }); |
+ builder.serve("bar", "1.0.0", deps: { |
+ "baz": "any" |
+ }); |
builder.serve("baz", "1.0.0"); |
}); |
- schedulePub(args: ["global", "activate", "foo"], output: allOf([ |
- contains("Downloading bar 1.0.0..."), |
- contains("Downloading baz 1.0.0...") |
- ])); |
+ schedulePub( |
+ args: ["global", "activate", "foo"], |
+ output: allOf( |
+ [contains("Downloading bar 1.0.0..."), contains("Downloading baz 1.0.0...")])); |
}); |
} |