| Index: pkg/analysis_server/test/socket_server_test.dart
|
| diff --git a/pkg/analysis_server/test/socket_server_test.dart b/pkg/analysis_server/test/socket_server_test.dart
|
| index 4ba4979d42016cbb8c47ee199adf5d735a485cc9..5fcd0e61c05f850d96e9412ceeb2b20ceb10f30b 100644
|
| --- a/pkg/analysis_server/test/socket_server_test.dart
|
| +++ b/pkg/analysis_server/test/socket_server_test.dart
|
| @@ -51,13 +51,13 @@ class SocketServerTest {
|
| expect(channel2.responsesReceived[0].id, equals(''));
|
| expect(channel2.responsesReceived[0].error, isNotNull);
|
| expect(channel2.responsesReceived[0].error.code, equals(
|
| - RequestError.CODE_SERVER_ALREADY_STARTED));
|
| + RequestErrorCode.SERVER_ALREADY_STARTED));
|
| channel2.sendRequest(new ServerShutdownParams().toRequest('0')).then(
|
| (Response response) {
|
| expect(response.id, equals('0'));
|
| expect(response.error, isNotNull);
|
| expect(response.error.code, equals(
|
| - RequestError.CODE_SERVER_ALREADY_STARTED));
|
| + RequestErrorCode.SERVER_ALREADY_STARTED));
|
| channel2.expectMsgCount(responseCount: 2);
|
| });
|
| }
|
|
|