| 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 db2cf1c920e3946138cb25e54652e56d4ef7edb7..7ad3f9995d4558e002692adaa2a5056c73200124 100644
|
| --- a/pkg/analysis_server/test/integration/protocol_matchers.dart
|
| +++ b/pkg/analysis_server/test/integration/protocol_matchers.dart
|
| @@ -1621,7 +1621,7 @@ final Matcher isRemoveContentOverlay = new LazyMatcher(() => new MatchesJsonObje
|
| * {
|
| * "code": RequestErrorCode
|
| * "message": String
|
| - * "data": optional object
|
| + * "stackTrace": optional String
|
| * }
|
| */
|
| final Matcher isRequestError = new LazyMatcher(() => new MatchesJsonObject(
|
| @@ -1629,7 +1629,7 @@ final Matcher isRequestError = new LazyMatcher(() => new MatchesJsonObject(
|
| "code": isRequestErrorCode,
|
| "message": isString
|
| }, optionalFields: {
|
| - "data": isObject
|
| + "stackTrace": isString
|
| }));
|
|
|
| /**
|
|
|