| Index: sdk/lib/_internal/pub/test/get/hosted/unlock_if_incompatible_test.dart
|
| diff --git a/sdk/lib/_internal/pub/test/install/hosted/unlock_if_incompatible_test.dart b/sdk/lib/_internal/pub/test/get/hosted/unlock_if_incompatible_test.dart
|
| similarity index 85%
|
| rename from sdk/lib/_internal/pub/test/install/hosted/unlock_if_incompatible_test.dart
|
| rename to sdk/lib/_internal/pub/test/get/hosted/unlock_if_incompatible_test.dart
|
| index b1d68c2c69f7c4ab0bc4f6551589478a9a2160b9..4621703ce71d3cc91b72be0523209edd0e262bbf 100644
|
| --- a/sdk/lib/_internal/pub/test/install/hosted/unlock_if_incompatible_test.dart
|
| +++ b/sdk/lib/_internal/pub/test/get/hosted/unlock_if_incompatible_test.dart
|
| @@ -9,19 +9,19 @@ import '../../test_pub.dart';
|
|
|
| main() {
|
| initConfig();
|
| - integration('updates a locked pub server package with a new incompatible '
|
| + integration('upgrades a locked pub server package with a new incompatible '
|
| 'constraint', () {
|
| servePackages([packageMap("foo", "1.0.0")]);
|
|
|
| d.appDir({"foo": "any"}).create();
|
|
|
| - pubInstall();
|
| + pubGet();
|
|
|
| d.packagesDir({"foo": "1.0.0"}).validate();
|
| servePackages([packageMap("foo", "1.0.1")]);
|
| d.appDir({"foo": ">1.0.0"}).create();
|
|
|
| - pubInstall();
|
| + pubGet();
|
|
|
| d.packagesDir({"foo": "1.0.1"}).validate();
|
| });
|
|
|