Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(589)

Unified Diff: sdk/lib/_internal/pub/test/install/hosted/install_transitive_test.dart

Issue 19592015: Get rid of hokey dependencyMapList stuff. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: sdk/lib/_internal/pub/test/install/hosted/install_transitive_test.dart
diff --git a/sdk/lib/_internal/pub/test/install/hosted/install_transitive_test.dart b/sdk/lib/_internal/pub/test/install/hosted/install_transitive_test.dart
index e474897a8fadb29750b456b6127a7e628b4c51a5..2ac11dbf9c4a1bf582ef81000210116db34e9c7d 100644
--- a/sdk/lib/_internal/pub/test/install/hosted/install_transitive_test.dart
+++ b/sdk/lib/_internal/pub/test/install/hosted/install_transitive_test.dart
@@ -13,13 +13,13 @@ main() {
initConfig();
integration('installs packages transitively from a pub server', () {
servePackages([
- packageMap("foo", "1.2.3", [dependencyMap("bar", "2.0.4")]),
+ packageMap("foo", "1.2.3", {"bar": "2.0.4"}),
packageMap("bar", "2.0.3"),
packageMap("bar", "2.0.4"),
packageMap("bar", "2.0.5")
]);
- d.appDir([dependencyMap("foo", "1.2.3")]).create();
+ d.appDir({"foo": "1.2.3"}).create();
pubInstall();

Powered by Google App Engine
This is Rietveld 408576698