| 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 17e4a13aaae400f44014a6c73213a49e5bb91589..25ae5da773df0a1ab1ca266ed7658f54e68052bf 100644
|
| --- a/pkg/analysis_server/test/integration/protocol_matchers.dart
|
| +++ b/pkg/analysis_server/test/integration/protocol_matchers.dart
|
| @@ -1918,12 +1918,16 @@ final Matcher isInlineMethodOptions = new LazyMatcher(() => new MatchesJsonObjec
|
| * {
|
| * "offset": int
|
| * "length": int
|
| + * "elementKindName": String
|
| + * "oldName": String
|
| * }
|
| */
|
| final Matcher isRenameFeedback = new LazyMatcher(() => new MatchesJsonObject(
|
| "rename feedback", {
|
| "offset": isInt,
|
| - "length": isInt
|
| + "length": isInt,
|
| + "elementKindName": isString,
|
| + "oldName": isString
|
| }));
|
|
|
| /**
|
|
|