| Index: sdk/lib/_internal/pub_generated/test/global/activate/activate_git_after_hosted_test.dart
|
| diff --git a/sdk/lib/_internal/pub/test/global/activate/activate_git_after_hosted_test.dart b/sdk/lib/_internal/pub_generated/test/global/activate/activate_git_after_hosted_test.dart
|
| similarity index 54%
|
| copy from sdk/lib/_internal/pub/test/global/activate/activate_git_after_hosted_test.dart
|
| copy to sdk/lib/_internal/pub_generated/test/global/activate/activate_git_after_hosted_test.dart
|
| index e524cbf0d65837881b80c5d761931f18cb5242fa..6be9b071ab1488b5e7f8e6ba38e6d9ba9d1aafaf 100644
|
| --- a/sdk/lib/_internal/pub/test/global/activate/activate_git_after_hosted_test.dart
|
| +++ b/sdk/lib/_internal/pub_generated/test/global/activate/activate_git_after_hosted_test.dart
|
| @@ -13,34 +13,32 @@ main() {
|
| ensureGit();
|
|
|
| servePackages((builder) {
|
| - builder.serve("foo", "1.0.0", contents: [
|
| - d.dir("bin", [
|
| - d.file("foo.dart", "main(args) => print('hosted');")
|
| - ])
|
| - ]);
|
| + builder.serve(
|
| + "foo",
|
| + "1.0.0",
|
| + contents: [
|
| + d.dir("bin", [d.file("foo.dart", "main(args) => print('hosted');")])]);
|
| });
|
|
|
| - d.git('foo.git', [
|
| - d.libPubspec("foo", "1.0.0"),
|
| - d.dir("bin", [
|
| - d.file("foo.dart", "main() => print('git');")
|
| - ])
|
| - ]).create();
|
| + d.git(
|
| + 'foo.git',
|
| + [
|
| + d.libPubspec("foo", "1.0.0"),
|
| + d.dir("bin", [d.file("foo.dart", "main() => print('git');")])]).create();
|
|
|
| schedulePub(args: ["global", "activate", "foo"]);
|
|
|
| - schedulePub(args: ["global", "activate", "-sgit", "../foo.git"],
|
| + schedulePub(
|
| + args: ["global", "activate", "-sgit", "../foo.git"],
|
| output: allOf(
|
| startsWith(
|
| 'Package foo is currently active at version 1.0.0.\n'
|
| - 'Resolving dependencies...\n'
|
| - '+ foo 1.0.0 from git ../foo.git at '),
|
| + 'Resolving dependencies...\n' '+ foo 1.0.0 from git ../foo.git at '),
|
| // Specific revision number goes here.
|
| - endsWith(
|
| - 'Precompiling executables...\n'
|
| - 'Loading source assets...\n'
|
| - 'Precompiled foo:foo.\n'
|
| - 'Activated foo 1.0.0 from Git repository "../foo.git".')));
|
| + endsWith(
|
| + 'Precompiling executables...\n' 'Loading source assets...\n'
|
| + 'Precompiled foo:foo.\n'
|
| + 'Activated foo 1.0.0 from Git repository "../foo.git".')));
|
|
|
| // Should now run the git one.
|
| var pub = pubRun(global: true, args: ["foo"]);
|
|
|