| 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 4a983a243873325e68d452592bcfe58402d16b38..5185bdc41c3688c90f02bb6fed12abacc56edb00 100644
|
| --- a/pkg/analysis_server/test/services/completion/completion_manager_test.dart
|
| +++ b/pkg/analysis_server/test/services/completion/completion_manager_test.dart
|
| @@ -25,28 +25,28 @@ class CompletionManagerTest extends AbstractContextTest {
|
| test_dart() {
|
| Source source = addSource('/does/not/exist.dart', '');
|
| var manager =
|
| - new CompletionManager.create(context, source, 0, null, cache, perf);
|
| + new CompletionManager.create(context, source, null, cache);
|
| expect(manager.runtimeType, DartCompletionManager);
|
| }
|
|
|
| test_html() {
|
| Source source = addSource('/does/not/exist.html', '');
|
| var manager =
|
| - new CompletionManager.create(context, source, 0, null, cache, perf);
|
| + new CompletionManager.create(context, source, null, cache);
|
| expect(manager.runtimeType, NoOpCompletionManager);
|
| }
|
|
|
| test_null_context() {
|
| Source source = addSource('/does/not/exist.dart', '');
|
| var manager =
|
| - new CompletionManager.create(null, source, 0, null, cache, perf);
|
| + new CompletionManager.create(null, source, null, cache);
|
| expect(manager.runtimeType, NoOpCompletionManager);
|
| }
|
|
|
| test_other() {
|
| Source source = addSource('/does/not/exist.foo', '');
|
| var manager =
|
| - new CompletionManager.create(context, source, 0, null, cache, perf);
|
| + new CompletionManager.create(context, source, null, cache);
|
| expect(manager.runtimeType, NoOpCompletionManager);
|
| }
|
| }
|
|
|