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

Unified Diff: pkg/analysis_server/test/domain_completion_test.dart

Issue 1506623002: fix combinator contributor (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 years 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/domain_completion_test.dart
diff --git a/pkg/analysis_server/test/domain_completion_test.dart b/pkg/analysis_server/test/domain_completion_test.dart
index 63dc55966bf871fc8c10c4fdcdef58cf421f3849..888b7ccf911ace21c6ed41cd88ad38f2b3b14f31 100644
--- a/pkg/analysis_server/test/domain_completion_test.dart
+++ b/pkg/analysis_server/test/domain_completion_test.dart
@@ -358,6 +358,8 @@ class CompletionTest extends AbstractAnalysisTest {
expect(suggestionsDone, isNotNull);
suggestions = params.results;
}
+ } else if (notification.event == SERVER_ERROR) {
+ fail('server error: ${notification.toJson()}');
}
}

Powered by Google App Engine
This is Rietveld 408576698