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

Unified Diff: sdk/lib/_internal/pub/test/install/path/shared_dependency_symlink_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/path/shared_dependency_symlink_test.dart
diff --git a/sdk/lib/_internal/pub/test/install/path/shared_dependency_symlink_test.dart b/sdk/lib/_internal/pub/test/install/path/shared_dependency_symlink_test.dart
index 94b8453d017b4dca76061808a3c50ef961842322..6319636cdc0be9ed069d155cc61a7382655ab6df 100644
--- a/sdk/lib/_internal/pub/test/install/path/shared_dependency_symlink_test.dart
+++ b/sdk/lib/_internal/pub/test/install/path/shared_dependency_symlink_test.dart
@@ -19,16 +19,16 @@ main() {
d.dir("foo", [
d.libDir("foo"),
- d.libPubspec("foo", "0.0.1", deps: [
- {"path": "../shared"}
- ])
+ d.libPubspec("foo", "0.0.1", deps: {
+ "shared": {"path": "../shared"}
+ })
]).create();
d.dir("bar", [
d.libDir("bar"),
- d.libPubspec("bar", "0.0.1", deps: [
- {"path": "../link/shared"}
- ])
+ d.libPubspec("bar", "0.0.1", deps: {
+ "shared": {"path": "../link/shared"}
+ })
]).create();
d.dir(appPath, [

Powered by Google App Engine
This is Rietveld 408576698