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

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

Issue 1685653002: abort completion request - fixes #24271 (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: address comment Created 4 years, 10 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/analysis_abstract.dart
diff --git a/pkg/analysis_server/test/analysis_abstract.dart b/pkg/analysis_server/test/analysis_abstract.dart
index 85350eb5c32ec53a2b18717f607633b51f62053a..3541d9103fcab0e1d27fe50b54cbb97212851e9a 100644
--- a/pkg/analysis_server/test/analysis_abstract.dart
+++ b/pkg/analysis_server/test/analysis_abstract.dart
@@ -171,7 +171,7 @@ class AbstractAnalysisTest {
*/
Response handleSuccessfulRequest(Request request) {
Response response = handler.handleRequest(request);
- expect(response, isResponseSuccess('0'));
+ expect(response, isResponseSuccess(request.id));
return response;
}

Powered by Google App Engine
This is Rietveld 408576698