| Index: pkg/analysis_server/test/analysis_abstract.dart
|
| diff --git a/pkg/analysis_server/test/analysis_abstract.dart b/pkg/analysis_server/test/analysis_abstract.dart
|
| index 0164cf8f12af3fd0adac6f8a66b8e2b608d02e3f..8e52fb7684bcefbf771ac14b8825204b1c7d92a7 100644
|
| --- a/pkg/analysis_server/test/analysis_abstract.dart
|
| +++ b/pkg/analysis_server/test/analysis_abstract.dart
|
| @@ -51,8 +51,6 @@ class AbstractAnalysisTest {
|
| notificationStream.listen((Notification notification) {
|
| processNotification(notification);
|
| });
|
| - // create an empty project
|
| - _createEmptyProject();
|
| }
|
|
|
| void addAnalysisSubscription(AnalysisService service, String file) {
|
| @@ -184,9 +182,9 @@ class AbstractAnalysisTest {
|
| // }
|
|
|
| /**
|
| - * Creates an empty project `/project/`.
|
| + * Creates a project `/project`.
|
| */
|
| - void _createEmptyProject() {
|
| + void createProject() {
|
| resourceProvider.newFolder(projectPath);
|
| Request request = new Request('0', ANALYSIS_SET_ANALYSIS_ROOTS);
|
| request.setParameter(INCLUDED, [projectPath]);
|
|
|