| 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 8956f99f47da6f1568bd3c469c89d44511ee73a8..ee6e0d67676a8c2cd855ceb3db1e6d67114e118a 100644
|
| --- a/pkg/analysis_server/test/integration/protocol_matchers.dart
|
| +++ b/pkg/analysis_server/test/integration/protocol_matchers.dart
|
| @@ -649,7 +649,9 @@ final Matcher isEditGetRefactoringParams = new LazyMatcher(() => new MatchesJson
|
| * edit.getRefactoring result
|
| *
|
| * {
|
| - * "problems": List<RefactoringProblem>
|
| + * "initialProblems": List<RefactoringProblem>
|
| + * "optionsProblems": List<RefactoringProblem>
|
| + * "finalProblems": List<RefactoringProblem>
|
| * "feedback": optional RefactoringFeedback
|
| * "change": optional SourceChange
|
| * "potentialEdits": optional List<String>
|
| @@ -657,7 +659,9 @@ final Matcher isEditGetRefactoringParams = new LazyMatcher(() => new MatchesJson
|
| */
|
| final Matcher isEditGetRefactoringResult = new LazyMatcher(() => new MatchesJsonObject(
|
| "edit.getRefactoring result", {
|
| - "problems": isListOf(isRefactoringProblem)
|
| + "initialProblems": isListOf(isRefactoringProblem),
|
| + "optionsProblems": isListOf(isRefactoringProblem),
|
| + "finalProblems": isListOf(isRefactoringProblem)
|
| }, optionalFields: {
|
| "feedback": isRefactoringFeedback,
|
| "change": isSourceChange,
|
|
|