| 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 8f02fdea984c047a6c32b293c7bd4e4487dc8e59..e4387d53d3a5f36c442c0b8327907b62767410b4 100644
|
| --- a/pkg/analysis_server/test/integration/protocol_matchers.dart
|
| +++ b/pkg/analysis_server/test/integration/protocol_matchers.dart
|
| @@ -1069,14 +1069,14 @@ final Matcher isElementKind = isIn([
|
| * Error
|
| *
|
| * {
|
| - * "code": int
|
| + * "code": String
|
| * "message": String
|
| * "data": optional object
|
| * }
|
| */
|
| final Matcher isError = new MatchesJsonObject(
|
| "Error", {
|
| - "code": isInt,
|
| + "code": isString,
|
| "message": isString
|
| }, optionalFields: {
|
| "data": isObject
|
|
|