| Index: pkg/analysis_server/test/services/completion/completion_manager_test.dart
|
| diff --git a/pkg/analysis_server/test/services/completion/completion_manager_test.dart b/pkg/analysis_server/test/services/completion/completion_manager_test.dart
|
| index eab5223d6b2c0f38d46daae222376b9a5b06dc3a..4ee538d6540060368b0053b51619b6a72f461d5f 100644
|
| --- a/pkg/analysis_server/test/services/completion/completion_manager_test.dart
|
| +++ b/pkg/analysis_server/test/services/completion/completion_manager_test.dart
|
| @@ -24,25 +24,25 @@ class CompletionManagerTest extends AbstractContextTest {
|
|
|
| test_dart() {
|
| Source source = addSource('/does/not/exist.dart', '');
|
| - var manager = new CompletionManager.create(context, source, null);
|
| + var manager = new CompletionManager.create(context, source, null, []);
|
| expect(manager.runtimeType, DartCompletionManager);
|
| }
|
|
|
| test_html() {
|
| Source source = addSource('/does/not/exist.html', '');
|
| - var manager = new CompletionManager.create(context, source, null);
|
| + var manager = new CompletionManager.create(context, source, null, []);
|
| expect(manager.runtimeType, NoOpCompletionManager);
|
| }
|
|
|
| test_null_context() {
|
| Source source = addSource('/does/not/exist.dart', '');
|
| - var manager = new CompletionManager.create(null, source, null);
|
| + var manager = new CompletionManager.create(null, source, null, []);
|
| expect(manager.runtimeType, NoOpCompletionManager);
|
| }
|
|
|
| test_other() {
|
| Source source = addSource('/does/not/exist.foo', '');
|
| - var manager = new CompletionManager.create(context, source, null);
|
| + var manager = new CompletionManager.create(context, source, null, []);
|
| expect(manager.runtimeType, NoOpCompletionManager);
|
| }
|
| }
|
|
|