| Index: sdk/lib/_internal/pub/test/get/switch_source_test.dart
|
| diff --git a/sdk/lib/_internal/pub/test/install/switch_source_test.dart b/sdk/lib/_internal/pub/test/get/switch_source_test.dart
|
| similarity index 86%
|
| rename from sdk/lib/_internal/pub/test/install/switch_source_test.dart
|
| rename to sdk/lib/_internal/pub/test/get/switch_source_test.dart
|
| index e2c5280a7962cc0336fd9edf401a5bd1d3a0ab1d..978dee827b74451865b7d9c17fcc4ac98c47a341 100644
|
| --- a/sdk/lib/_internal/pub/test/install/switch_source_test.dart
|
| +++ b/sdk/lib/_internal/pub/test/get/switch_source_test.dart
|
| @@ -9,7 +9,7 @@ import '../test_pub.dart';
|
|
|
| main() {
|
| initConfig();
|
| - integration('re-installs a package if its source has changed', () {
|
| + integration('re-gets a package if its source has changed', () {
|
| servePackages([packageMap("foo", "1.2.3")]);
|
|
|
| d.dir('foo', [
|
| @@ -19,12 +19,12 @@ main() {
|
|
|
| d.appDir({"foo": {"path": "../foo"}}).create();
|
|
|
| - pubInstall();
|
| + pubGet();
|
|
|
| d.packagesDir({"foo": "0.0.1"}).validate();
|
| d.appDir({"foo": "any"}).create();
|
|
|
| - pubInstall();
|
| + pubGet();
|
|
|
| d.packagesDir({"foo": "1.2.3"}).validate();
|
| });
|
|
|