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

Unified Diff: pkg/analysis_server/test/integration/integration_tests.dart

Issue 449213002: Rework "analysis.updateContent" analysis server request. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 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: pkg/analysis_server/test/integration/integration_tests.dart
diff --git a/pkg/analysis_server/test/integration/integration_tests.dart b/pkg/analysis_server/test/integration/integration_tests.dart
index 7dfd240711385b6b66cd21f4c3420047f05ecbe7..dbd26a72f4485857e07da8d05a53be2e54eb4d35 100644
--- a/pkg/analysis_server/test/integration/integration_tests.dart
+++ b/pkg/analysis_server/test/integration/integration_tests.dart
@@ -570,7 +570,7 @@ class Server {
if (messageAsMap.containsKey('error')) {
// TODO(paulberry): propagate the error info to the completer.
completer.completeError(new UnimplementedError(
- 'Server responded with an error'));
+ 'Server responded with an error: ${JSON.encode(message)}'));
} else {
completer.complete(messageAsMap['result']);
}

Powered by Google App Engine
This is Rietveld 408576698