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

Unified Diff: sdk/lib/_internal/pub/test/hosted/remove_removed_dependency_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/hosted/remove_removed_dependency_test.dart
diff --git a/sdk/lib/_internal/pub/test/hosted/remove_removed_dependency_test.dart b/sdk/lib/_internal/pub/test/hosted/remove_removed_dependency_test.dart
index 0c37d87419bde6aca893ee016a018a1d2a4a9b88..fb25e727221fad96cc6fd367e95a5676246469f9 100644
--- a/sdk/lib/_internal/pub/test/hosted/remove_removed_dependency_test.dart
+++ b/sdk/lib/_internal/pub/test/hosted/remove_removed_dependency_test.dart
@@ -19,7 +19,7 @@ main() {
packageMap("bar", "1.0.0")
]);
- d.appDir([dependencyMap("foo"), dependencyMap("bar")]).create();
+ d.appDir({"foo": "any", "bar": "any"}).create();
pubCommand(command);
@@ -28,7 +28,7 @@ main() {
"bar": "1.0.0"
}).validate();
- d.appDir([dependencyMap("foo")]).create();
+ d.appDir({"foo": "any"}).create();
pubCommand(command);

Powered by Google App Engine
This is Rietveld 408576698