| Index: pkg/analysis_server/test/protocol_server_test.dart | 
| diff --git a/pkg/analysis_server/test/protocol_server_test.dart b/pkg/analysis_server/test/protocol_server_test.dart | 
| index 7abbe3f70314f963ca3c12d7f51bb32f22727fbc..d770e3505a32f9ce30498deecc42b78968048ccb 100644 | 
| --- a/pkg/analysis_server/test/protocol_server_test.dart | 
| +++ b/pkg/analysis_server/test/protocol_server_test.dart | 
| @@ -72,7 +72,8 @@ class AnalysisErrorTest { | 
| START_COLUMN: 2 | 
| }, | 
| MESSAGE: 'my message', | 
| -      CORRECTION: 'my correction' | 
| +      CORRECTION: 'my correction', | 
| +      HAS_FIX : false | 
| }); | 
| } | 
|  | 
| @@ -89,7 +90,8 @@ class AnalysisErrorTest { | 
| START_LINE: 3, | 
| START_COLUMN: 2 | 
| }, | 
| -      MESSAGE: 'my message' | 
| +      MESSAGE: 'my message', | 
| +      HAS_FIX : false | 
| }); | 
| } | 
|  | 
| @@ -106,7 +108,8 @@ class AnalysisErrorTest { | 
| START_LINE: -1, | 
| START_COLUMN: -1 | 
| }, | 
| -      MESSAGE: 'my message' | 
| +      MESSAGE: 'my message', | 
| +      HAS_FIX : false | 
| }); | 
| } | 
| } | 
|  |