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

Unified Diff: test/hosted/remove_removed_transitive_dependency_test.dart

Issue 1491263003: Fix a bunch of tests. (Closed) Base URL: git@github.com:dart-lang/pub.git@master
Patch Set: Created 5 years 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: test/hosted/remove_removed_transitive_dependency_test.dart
diff --git a/test/hosted/remove_removed_transitive_dependency_test.dart b/test/hosted/remove_removed_transitive_dependency_test.dart
index ee2f1d206a47dc305f70551e8fbf5fa87543eabc..81660816b8d632fabb151d27d5d9a82a5d387798 100644
--- a/test/hosted/remove_removed_transitive_dependency_test.dart
+++ b/test/hosted/remove_removed_transitive_dependency_test.dart
@@ -13,14 +13,14 @@ main() {
"on", () {
servePackages((builder) {
builder.serve("foo", "1.0.0", deps: {
- "shared-dep": "any"
+ "shared_dep": "any"
});
builder.serve("bar", "1.0.0", deps: {
- "shared-dep": "any",
- "bar-dep": "any"
+ "shared_dep": "any",
+ "bar_dep": "any"
});
- builder.serve("shared-dep", "1.0.0");
- builder.serve("bar-dep", "1.0.0");
+ builder.serve("shared_dep", "1.0.0");
+ builder.serve("bar_dep", "1.0.0");
});
d.appDir({
@@ -33,8 +33,8 @@ main() {
d.packagesDir({
"foo": "1.0.0",
"bar": "1.0.0",
- "shared-dep": "1.0.0",
- "bar-dep": "1.0.0",
+ "shared_dep": "1.0.0",
+ "bar_dep": "1.0.0",
}).validate();
d.appDir({"foo": "any"}).create();
@@ -44,8 +44,8 @@ main() {
d.packagesDir({
"foo": "1.0.0",
"bar": null,
- "shared-dep": "1.0.0",
- "bar-dep": null,
+ "shared_dep": "1.0.0",
+ "bar_dep": null,
}).validate();
});
});

Powered by Google App Engine
This is Rietveld 408576698