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

Unified Diff: sdk/lib/_internal/pub/test/run/doesnt_load_an_unnecessary_transformer_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/doesnt_load_an_unnecessary_transformer_test.dart
diff --git a/sdk/lib/_internal/pub/test/run/doesnt_load_an_unnecessary_transformer_test.dart b/sdk/lib/_internal/pub/test/run/doesnt_load_an_unnecessary_transformer_test.dart
index 098b166f68bf7a44bd7c0e93da2fd55410ecc3b1..1be24873e3ee88b2efadb25ba8e5c2f71bb70ac4 100644
--- a/sdk/lib/_internal/pub/test/run/doesnt_load_an_unnecessary_transformer_test.dart
+++ b/sdk/lib/_internal/pub/test/run/doesnt_load_an_unnecessary_transformer_test.dart
@@ -47,7 +47,7 @@ main() {
// This shouldn't load the transformer, since it doesn't transform
// anything that the entrypoint imports. If it did load the transformer,
// we'd know since it would throw an exception.
- var pub = pubRun(args: ["hi"]);
+ var pub = pubRun(args: ["bin/hi"]);
pub.stdout.expect("Hello!");
pub.shouldExit();
});

Powered by Google App Engine
This is Rietveld 408576698