| 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 7b855437c925159e1c785f41bafd1b17c0a50661..7443db940c50167b593639c73e067a9c97dd5935 100644
|
| --- a/pkg/analysis_server/test/integration/protocol_matchers.dart
|
| +++ b/pkg/analysis_server/test/integration/protocol_matchers.dart
|
| @@ -1571,13 +1571,14 @@ final Matcher isRefactoringMethodParameterKind = new MatchesEnum("RefactoringMet
|
| * {
|
| * "severity": RefactoringProblemSeverity
|
| * "message": String
|
| - * "location": Location
|
| + * "location": optional Location
|
| * }
|
| */
|
| final Matcher isRefactoringProblem = new LazyMatcher(() => new MatchesJsonObject(
|
| "RefactoringProblem", {
|
| "severity": isRefactoringProblemSeverity,
|
| - "message": isString,
|
| + "message": isString
|
| + }, optionalFields: {
|
| "location": isLocation
|
| }));
|
|
|
|
|