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

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

Issue 402493002: Remove 'errorCode' field from AnalysisError in the analysis server API. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 5 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 bff5f0276b699f9c1d2aac6b421dd6e509e07c3e..554a42973be43c987b0dafccde521f904847c9e9 100644
--- a/pkg/analysis_server/test/integration/integration_tests.dart
+++ b/pkg/analysis_server/test/integration/integration_tests.dart
@@ -209,9 +209,7 @@ final Matcher isAnalysisError = new MatchesJsonObject('AnalysisError', {
'location': isLocation,
'message': isString,
}, optionalFields: {
- 'correction': isString,
- // TODO(paulberry): remove 'errorCode' once server stops sending it
- 'errorCode': anything
+ 'correction': isString
});
const Matcher isAnalysisStatus = const MatchesJsonObject('AnalysisStatus', const
« no previous file with comments | « pkg/analysis_server/test/domain_analysis_test.dart ('k') | pkg/analysis_server/test/operation/operation_analysis_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698