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

Unified Diff: sdk/lib/_internal/pub/test/run/passes_along_arguments_test.dart

Issue 1040563004: Make "pub run foo" run "pub run foo:foo" rather than "pub run bin/foo" (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Remove bogus changes. Created 5 years, 9 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/run/passes_along_arguments_test.dart
diff --git a/sdk/lib/_internal/pub/test/run/passes_along_arguments_test.dart b/sdk/lib/_internal/pub/test/run/passes_along_arguments_test.dart
index 711d64b14a4b5c8ffb52ff664e90949fc51cd97b..4f16a0c4938752491a2042fa97b84fc12b7a52b4 100644
--- a/sdk/lib/_internal/pub/test/run/passes_along_arguments_test.dart
+++ b/sdk/lib/_internal/pub/test/run/passes_along_arguments_test.dart
@@ -23,7 +23,7 @@ main() {
// Use some args that would trip up pub's arg parser to ensure that it
// isn't trying to look at them.
- var pub = pubRun(args: ["args", "--verbose", "-m", "--", "help"]);
+ var pub = pubRun(args: ["bin/args", "--verbose", "-m", "--", "help"]);
pub.stdout.expect("--verbose -m -- help");
pub.shouldExit();

Powered by Google App Engine
This is Rietveld 408576698