| Index: sdk/lib/_internal/pub/test/global/activate/uncached_package_test.dart
|
| diff --git a/sdk/lib/_internal/pub/test/global/activate/uncached_package_test.dart b/sdk/lib/_internal/pub/test/global/activate/uncached_package_test.dart
|
| index 9f9041db9ad74722175f05821bafb8cece6ff6c5..7194b99ae56c8ae57f3fd2c832cd3fe846a8d65e 100644
|
| --- a/sdk/lib/_internal/pub/test/global/activate/uncached_package_test.dart
|
| +++ b/sdk/lib/_internal/pub/test/global/activate/uncached_package_test.dart
|
| @@ -10,11 +10,11 @@ import '../../test_pub.dart';
|
| main() {
|
| initConfig();
|
| integration('installs and activates the best version of a package', () {
|
| - servePackages([
|
| - packageMap("foo", "1.0.0"),
|
| - packageMap("foo", "1.2.3"),
|
| - packageMap("foo", "2.0.0-wildly.unstable")
|
| - ]);
|
| + servePackages((builder) {
|
| + builder.serve("foo", "1.0.0");
|
| + builder.serve("foo", "1.2.3");
|
| + builder.serve("foo", "2.0.0-wildly.unstable");
|
| + });
|
|
|
| schedulePub(args: ["global", "activate", "foo"], output: """
|
| Resolving dependencies...
|
|
|