| 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 5e1588d88de6e0aad4d73f256636b2333f07d3ad..2c46a878759887204f3da4188cbfdd2e18812283 100644
|
| --- a/pkg/analysis_server/test/integration/protocol_matchers.dart
|
| +++ b/pkg/analysis_server/test/integration/protocol_matchers.dart
|
| @@ -417,12 +417,13 @@ final Matcher isSearchFindElementReferencesParams = new LazyMatcher(() => new Ma
|
| *
|
| * {
|
| * "id": SearchId
|
| - * "element": Element
|
| + * "element": optional Element
|
| * }
|
| */
|
| final Matcher isSearchFindElementReferencesResult = new LazyMatcher(() => new MatchesJsonObject(
|
| "search.findElementReferences result", {
|
| - "id": isSearchId,
|
| + "id": isSearchId
|
| + }, optionalFields: {
|
| "element": isElement
|
| }));
|
|
|
|
|