| 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 f69037d691cb8838daa9af2bb16d1b5202d0d946..d4ca2b712c3e14a888bfe0b17d938f5a746d52cc 100644
 | 
| --- a/pkg/analysis_server/test/integration/protocol_matchers.dart
 | 
| +++ b/pkg/analysis_server/test/integration/protocol_matchers.dart
 | 
| @@ -1029,6 +1029,7 @@ final Matcher isAddContentOverlay = new LazyMatcher(() => new MatchesJsonObject(
 | 
|   *   "location": Location
 | 
|   *   "message": String
 | 
|   *   "correction": optional String
 | 
| + *   "hasFix": optional bool
 | 
|   * }
 | 
|   */
 | 
|  final Matcher isAnalysisError = new LazyMatcher(() => new MatchesJsonObject(
 | 
| @@ -1038,7 +1039,8 @@ final Matcher isAnalysisError = new LazyMatcher(() => new MatchesJsonObject(
 | 
|      "location": isLocation,
 | 
|      "message": isString
 | 
|    }, optionalFields: {
 | 
| -    "correction": isString
 | 
| +    "correction": isString,
 | 
| +    "hasFix": isBool
 | 
|    }));
 | 
|  
 | 
|  /**
 | 
| 
 |