Index: pkg/analysis_server/test/integration/integration_tests.dart |
diff --git a/pkg/analysis_server/test/integration/integration_tests.dart b/pkg/analysis_server/test/integration/integration_tests.dart |
index 5ae41f93e0848b72a4e58e708fa4819f0bb3b85d..1893c18fe23103f32522c669ec35cd0c9124a591 100644 |
--- a/pkg/analysis_server/test/integration/integration_tests.dart |
+++ b/pkg/analysis_server/test/integration/integration_tests.dart |
@@ -205,8 +205,12 @@ abstract class AbstractAnalysisServerIntegrationTest |
/** |
* Start [server]. |
*/ |
- Future startServer({int servicesPort, bool checked: true}) => |
- server.start(servicesPort: servicesPort, checked: checked); |
+ Future startServer( |
+ {bool checked: true, int diagnosticPort, int servicesPort}) => |
+ server.start( |
+ checked: checked, |
+ diagnosticPort: diagnosticPort, |
+ servicesPort: servicesPort); |
/** |
* After every test, the server is stopped and [sourceDirectory] is deleted. |