| Index: sdk/lib/_internal/pub/test/global/activate/constraint_test.dart
|
| diff --git a/sdk/lib/_internal/pub/test/global/activate/constraint_test.dart b/sdk/lib/_internal/pub/test/global/activate/constraint_test.dart
|
| index b5073b18a3a51793134148100d64135a64f9d03d..714e06c57e8b6bf19d2f711fa1665ea78356dc4a 100644
|
| --- a/sdk/lib/_internal/pub/test/global/activate/constraint_test.dart
|
| +++ b/sdk/lib/_internal/pub/test/global/activate/constraint_test.dart
|
| @@ -10,12 +10,12 @@ import '../../test_pub.dart';
|
| main() {
|
| initConfig();
|
| integration('chooses the highest version that matches the constraint', () {
|
| - servePackages([
|
| - packageMap("foo", "1.0.0"),
|
| - packageMap("foo", "1.0.1"),
|
| - packageMap("foo", "1.1.0"),
|
| - packageMap("foo", "1.2.3")
|
| - ]);
|
| + servePackages((builder) {
|
| + builder.serve("foo", "1.0.0");
|
| + builder.serve("foo", "1.0.1");
|
| + builder.serve("foo", "1.1.0");
|
| + builder.serve("foo", "1.2.3");
|
| + });
|
|
|
| schedulePub(args: ["global", "activate", "foo", "<1.1.0"]);
|
|
|
|
|