Index: sdk/lib/_internal/pub/test/install/git/check_out_transitive_test.dart |
diff --git a/sdk/lib/_internal/pub/test/install/git/check_out_transitive_test.dart b/sdk/lib/_internal/pub/test/install/git/check_out_transitive_test.dart |
index d07b3e235dcdc6950a5c56c7afd48452893d752c..f015b7475f875d7b1db7f2543e776cb7feca2980 100644 |
--- a/sdk/lib/_internal/pub/test/install/git/check_out_transitive_test.dart |
+++ b/sdk/lib/_internal/pub/test/install/git/check_out_transitive_test.dart |
@@ -16,7 +16,9 @@ main() { |
d.git('foo.git', [ |
d.libDir('foo'), |
- d.libPubspec('foo', '1.0.0', deps: [{"git": "../bar.git"}]) |
+ d.libPubspec('foo', '1.0.0', deps: { |
+ "bar": {"git": "../bar.git"} |
+ }) |
]).create(); |
d.git('bar.git', [ |
@@ -24,7 +26,7 @@ main() { |
d.libPubspec('bar', '1.0.0') |
]).create(); |
- d.appDir([{"git": "../foo.git"}]).create(); |
+ d.appDir({"foo": {"git": "../foo.git"}}).create(); |
pubInstall(); |