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

Unified Diff: sdk/lib/_internal/pub/test/list_package_dirs/no_lockfile_test.dart

Issue 184113007: Support JSON output for pub build. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Extend timeout. Created 6 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/list_package_dirs/no_lockfile_test.dart
diff --git a/sdk/lib/_internal/pub/test/list_package_dirs/no_lockfile_test.dart b/sdk/lib/_internal/pub/test/list_package_dirs/no_lockfile_test.dart
index 5d7446c07575687dd0293e85fe067688f295857d..3bbc72a47f4967178839757f1c9b06cf7ee24b7b 100644
--- a/sdk/lib/_internal/pub/test/list_package_dirs/no_lockfile_test.dart
+++ b/sdk/lib/_internal/pub/test/list_package_dirs/no_lockfile_test.dart
@@ -15,9 +15,10 @@ main() {
]).create();
schedulePub(args: ["list-package-dirs", "--format=json"],
- error: '''
- "Package \\"myapp\\" has no lockfile. Please run \\"pub get\\" first."
- ''',
- exitCode: exit_codes.NO_INPUT);
+ outputJson: {
+ "error":
+ 'Package "myapp" has no lockfile. Please run "pub get" first.'
+ },
+ exitCode: exit_codes.DATA);
});
}

Powered by Google App Engine
This is Rietveld 408576698