| Index: pkg/analysis_server/test/integration/integration_test_methods.dart
|
| diff --git a/pkg/analysis_server/test/integration/integration_test_methods.dart b/pkg/analysis_server/test/integration/integration_test_methods.dart
|
| index f49ae4ac84bad7db93400e33a06eabaa35b7c242..86879e6aabf8a4082e8a243e00b811515f68555e 100644
|
| --- a/pkg/analysis_server/test/integration/integration_test_methods.dart
|
| +++ b/pkg/analysis_server/test/integration/integration_test_methods.dart
|
| @@ -87,6 +87,12 @@ abstract class IntegrationTestMixin {
|
| * let the client know that it started correctly.
|
| *
|
| * It is not possible to subscribe to or unsubscribe from this notification.
|
| + *
|
| + * Parameters
|
| + *
|
| + * version ( String )
|
| + *
|
| + * The version number of the analysis server.
|
| */
|
| Stream<ServerConnectedParams> onServerConnected;
|
|
|
| @@ -1531,7 +1537,7 @@ abstract class IntegrationTestMixin {
|
| switch (event) {
|
| case "server.connected":
|
| expect(params, isServerConnectedParams);
|
| - _onServerConnected.add(new ServerConnectedParams());
|
| + _onServerConnected.add(new ServerConnectedParams.fromJson(decoder, 'params', params));
|
| break;
|
| case "server.error":
|
| expect(params, isServerErrorParams);
|
|
|