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

Unified Diff: sdk/lib/_internal/pub/test/install/git/stay_locked_if_compatible_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/git/stay_locked_if_compatible_test.dart
diff --git a/sdk/lib/_internal/pub/test/install/git/stay_locked_if_compatible_test.dart b/sdk/lib/_internal/pub/test/install/git/stay_locked_if_compatible_test.dart
index f59b93b720571920a6c5cbf4614b712760b25905..b68e8bad00343e6834c65f44028eb12d85fefbb6 100644
--- a/sdk/lib/_internal/pub/test/install/git/stay_locked_if_compatible_test.dart
+++ b/sdk/lib/_internal/pub/test/install/git/stay_locked_if_compatible_test.dart
@@ -20,7 +20,7 @@ main() {
d.libPubspec("foo", "1.0.0")
]).create();
- d.appDir([{"git": "../foo.git"}]).create();
+ d.appDir({"foo": {"git": "../foo.git"}}).create();
pubInstall();
@@ -35,7 +35,7 @@ main() {
d.libPubspec("foo", "1.0.1")
]).commit();
- d.appDir([{"git": "../foo.git", "version": ">=1.0.0"}]).create();
+ d.appDir({"foo": {"git": "../foo.git", "version": ">=1.0.0"}}).create();
pubInstall();

Powered by Google App Engine
This is Rietveld 408576698