Index: utils/tests/pub/test_pub.dart |
diff --git a/utils/tests/pub/test_pub.dart b/utils/tests/pub/test_pub.dart |
index 1a480052bd72cafead6ba3f8e39d0efd4def144f..e426ef956d97dabf1a5daeefaaecf060d98cf660 100644 |
--- a/utils/tests/pub/test_pub.dart |
+++ b/utils/tests/pub/test_pub.dart |
@@ -386,7 +386,7 @@ Future<Map> _dependencyListToMap(List<Map> dependencies) { |
source = new HostedSource(); |
break; |
case "sdk": |
- source = new SdkSource(''); |
+ source = new SdkSource(); |
break; |
default: |
throw 'Unknown source "$sourceName"'; |
@@ -1166,8 +1166,7 @@ Future<Pair<List<String>, List<String>>> schedulePackageValidation( |
ValidatorCreator fn) { |
return _scheduleValue((sandboxDir) { |
var cache = new SystemCache.withSources( |
- join(sandboxDir, cachePath), |
- join(sandboxDir, sdkPath)); |
+ join(sandboxDir, cachePath)); |
return Entrypoint.load(join(sandboxDir, appPath), cache) |
.then((entrypoint) { |