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

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

Issue 495273002: Rename 'getRefactoring.return.status' to 'problems'. (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/protocol_matchers.dart
diff --git a/pkg/analysis_server/test/integration/protocol_matchers.dart b/pkg/analysis_server/test/integration/protocol_matchers.dart
index 7443db940c50167b593639c73e067a9c97dd5935..61e16a420936ec591a654e1add7fcd9047aed283 100644
--- a/pkg/analysis_server/test/integration/protocol_matchers.dart
+++ b/pkg/analysis_server/test/integration/protocol_matchers.dart
@@ -650,7 +650,7 @@ final Matcher isEditGetRefactoringParams = new LazyMatcher(() => new MatchesJson
* edit.getRefactoring result
*
* {
- * "status": List<RefactoringProblem>
+ * "problems": List<RefactoringProblem>
* "feedback": optional object
* "change": optional SourceChange
* "potentialEdits": optional List<String>
@@ -658,7 +658,7 @@ final Matcher isEditGetRefactoringParams = new LazyMatcher(() => new MatchesJson
*/
final Matcher isEditGetRefactoringResult = new LazyMatcher(() => new MatchesJsonObject(
"edit.getRefactoring result", {
- "status": isListOf(isRefactoringProblem)
+ "problems": isListOf(isRefactoringProblem)
}, optionalFields: {
"feedback": isObject,
"change": isSourceChange,
« no previous file with comments | « pkg/analysis_server/test/integration/integration_test_methods.dart ('k') | pkg/analysis_server/tool/spec/spec_input.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698