| Index: sdk/lib/_internal/pub/test/cache/add/all_adds_all_matching_versions_test.dart
 | 
| diff --git a/sdk/lib/_internal/pub/test/cache/add/all_adds_all_matching_versions_test.dart b/sdk/lib/_internal/pub/test/cache/add/all_adds_all_matching_versions_test.dart
 | 
| index 3939f5bf10dceacf18c72205106909ab5ab2d915..79b8555ba98a47eac2604bbdf5faf881d1600126 100644
 | 
| --- a/sdk/lib/_internal/pub/test/cache/add/all_adds_all_matching_versions_test.dart
 | 
| +++ b/sdk/lib/_internal/pub/test/cache/add/all_adds_all_matching_versions_test.dart
 | 
| @@ -10,12 +10,12 @@ import '../../test_pub.dart';
 | 
|  main() {
 | 
|    initConfig();
 | 
|    integration('"--all" adds all matching versions of the package', () {
 | 
| -    servePackages([
 | 
| -      packageMap("foo", "1.2.2"),
 | 
| -      packageMap("foo", "1.2.3-dev"),
 | 
| -      packageMap("foo", "1.2.3"),
 | 
| -      packageMap("foo", "2.0.0")
 | 
| -    ]);
 | 
| +    servePackages((builder) {
 | 
| +      builder.serve("foo", "1.2.2");
 | 
| +      builder.serve("foo", "1.2.3-dev");
 | 
| +      builder.serve("foo", "1.2.3");
 | 
| +      builder.serve("foo", "2.0.0");
 | 
| +    });
 | 
|  
 | 
|      schedulePub(args: ["cache", "add", "foo", "-v", ">=1.0.0 <2.0.0", "--all"],
 | 
|          output: '''
 | 
| 
 |