| Index: pkg/analysis_server/test/edit/fixes_test.dart
|
| diff --git a/pkg/analysis_server/test/edit/fixes_test.dart b/pkg/analysis_server/test/edit/fixes_test.dart
|
| index ff4bacd2b5dd4004bbacad0d0d663167223cfcc7..c51783e798e603932e9566c43d0a31a90d9e4d43 100644
|
| --- a/pkg/analysis_server/test/edit/fixes_test.dart
|
| +++ b/pkg/analysis_server/test/edit/fixes_test.dart
|
| @@ -7,7 +7,9 @@ library test.edit.fixes;
|
| import 'dart:async';
|
|
|
| import 'package:analysis_server/src/edit/edit_domain.dart';
|
| +import 'package:analysis_server/src/plugin/server_plugin.dart';
|
| import 'package:analysis_server/src/protocol.dart';
|
| +import 'package:analyzer/src/plugin/plugin_impl.dart';
|
| import 'package:unittest/unittest.dart' hide ERROR;
|
|
|
| import '../analysis_abstract.dart';
|
| @@ -24,7 +26,10 @@ class FixesTest extends AbstractAnalysisTest {
|
| void setUp() {
|
| super.setUp();
|
| createProject();
|
| - handler = new EditDomainHandler(server);
|
| + ExtensionManager manager = new ExtensionManager();
|
| + ServerPlugin plugin = new ServerPlugin();
|
| + manager.processPlugins([plugin]);
|
| + handler = new EditDomainHandler(server, plugin);
|
| }
|
|
|
| Future test_fixUndefinedClass() {
|
|
|