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

Unified Diff: test/run/runs_app_in_entrypoint_test.dart

Issue 1282533003: Don't implicitly run "pub get". (Closed) Base URL: git@github.com:dart-lang/pub.git@master
Patch Set: Code review changes Created 5 years, 4 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: test/run/runs_app_in_entrypoint_test.dart
diff --git a/test/run/runs_app_in_entrypoint_test.dart b/test/run/runs_app_in_entrypoint_test.dart
index da571cb014f7a45505e6b70074ed0e78c55915c2..ac4f82e6d8fa916ae85d6295eee3e58c582cd45e 100644
--- a/test/run/runs_app_in_entrypoint_test.dart
+++ b/test/run/runs_app_in_entrypoint_test.dart
@@ -24,7 +24,8 @@ main() {
])
]).create();
- var pub = pubRun(args: ["bin/script"], shouldGetFirst: true);
+ pubGet();
+ var pub = pubRun(args: ["bin/script"]);
pub.stdout.expect("stdout output");
pub.stderr.expect("stderr output");
pub.shouldExit(123);
« no previous file with comments | « test/run/runs_app_in_directory_in_entrypoint_test.dart ('k') | test/run/runs_named_app_in_dependency_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698