| Index: pkg/analysis_server/test/services/correction/fix_test.dart
|
| diff --git a/pkg/analysis_server/test/services/correction/fix_test.dart b/pkg/analysis_server/test/services/correction/fix_test.dart
|
| index dbfb129d165dc07008bc9e2a35f09455e67c7f4e..dc65a97999e07210baad30889d9bb33a2f457873 100644
|
| --- a/pkg/analysis_server/test/services/correction/fix_test.dart
|
| +++ b/pkg/analysis_server/test/services/correction/fix_test.dart
|
| @@ -474,14 +474,14 @@ main() {
|
| // No fix for ";".
|
| {
|
| AnalysisError error = errors[0];
|
| - expect(error.message, "Expected to find ';'");
|
| + expect(error.message, "Expected to find ';'.");
|
| List<Fix> fixes = await _computeFixes(error);
|
| expect(fixes, isEmpty);
|
| }
|
| // Has fix for "await".
|
| {
|
| AnalysisError error = errors[1];
|
| - expect(error.message, startsWith("Undefined name 'await';"));
|
| + expect(error.message, startsWith("Undefined name 'await'."));
|
| List<Fix> fixes = await _computeFixes(error);
|
| // has exactly one fix
|
| expect(fixes, hasLength(1));
|
|
|