| 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 00bcc2e924d286c6e9b7bbcbdfd75c9a33f8b66e..7b855437c925159e1c785f41bafd1b17c0a50661 100644
|
| --- a/pkg/analysis_server/test/integration/protocol_matchers.dart
|
| +++ b/pkg/analysis_server/test/integration/protocol_matchers.dart
|
| @@ -627,7 +627,7 @@ final Matcher isEditGetFixesResult = new LazyMatcher(() => new MatchesJsonObject
|
| * edit.getRefactoring params
|
| *
|
| * {
|
| - * "kindId": RefactoringKind
|
| + * "kind": RefactoringKind
|
| * "file": FilePath
|
| * "offset": int
|
| * "length": int
|
| @@ -637,7 +637,7 @@ final Matcher isEditGetFixesResult = new LazyMatcher(() => new MatchesJsonObject
|
| */
|
| final Matcher isEditGetRefactoringParams = new LazyMatcher(() => new MatchesJsonObject(
|
| "edit.getRefactoring params", {
|
| - "kindId": isRefactoringKind,
|
| + "kind": isRefactoringKind,
|
| "file": isFilePath,
|
| "offset": isInt,
|
| "length": isInt,
|
|
|