| Index: tests/standalone/io/http_server_socket_test.dart
|
| diff --git a/tests/standalone/io/http_server_socket_test.dart b/tests/standalone/io/http_server_socket_test.dart
|
| index 8644e7c172edd0f28b536a2e72450ea3694234d0..2b835b675b0591ad3768950aa0b5e7636aebfa48 100644
|
| --- a/tests/standalone/io/http_server_socket_test.dart
|
| +++ b/tests/standalone/io/http_server_socket_test.dart
|
| @@ -107,7 +107,7 @@ class SocketMock implements Socket {
|
| _onError = callback;
|
| }
|
|
|
| - OutputStream get outputStream() => _outputStream;
|
| + OutputStream get outputStream => _outputStream;
|
|
|
| int hashCode() => _hashCode;
|
|
|
| @@ -157,7 +157,7 @@ class ServerSocketMock implements ServerSocket {
|
| _onError = callback;
|
| }
|
|
|
| - int get port() => _port;
|
| + int get port => _port;
|
|
|
| int _port;
|
| Function _onConnection;
|
|
|