| Index: pkg/analysis_server/test/edit/test_all.dart
|
| diff --git a/pkg/analysis_server/test/edit/test_all.dart b/pkg/analysis_server/test/edit/test_all.dart
|
| index 7c513b6d9788419cee1f719e51beda50997494e4..729dc2338dbe6631209d32ac2605b728120aa748 100644
|
| --- a/pkg/analysis_server/test/edit/test_all.dart
|
| +++ b/pkg/analysis_server/test/edit/test_all.dart
|
| @@ -7,7 +7,8 @@ library test.edit.all;
|
| import 'package:unittest/unittest.dart';
|
|
|
| import 'edit_domain_test.dart' as domain_edit_test;
|
| -import 'fix_test.dart' as fix_test;
|
| +import 'fixes_test.dart' as fixes_test;
|
| +import 'refactoring_test.dart' as refactoring_test;
|
|
|
| /**
|
| * Utility for manually running all tests.
|
| @@ -16,6 +17,7 @@ main() {
|
| groupSep = ' | ';
|
| group('edit', () {
|
| domain_edit_test.main();
|
| - fix_test.main();
|
| + fixes_test.main();
|
| + refactoring_test.main();
|
| });
|
| }
|
|
|