| Index: tests/standalone/io/raw_socket_test.dart
|
| diff --git a/tests/standalone/io/raw_socket_test.dart b/tests/standalone/io/raw_socket_test.dart
|
| index d7ea76cd5d128495ee8745520d423d57d218c134..eefdb0c20660c112afada35215268d2b4e8198a7 100644
|
| --- a/tests/standalone/io/raw_socket_test.dart
|
| +++ b/tests/standalone/io/raw_socket_test.dart
|
| @@ -449,9 +449,7 @@ void testClosedError() {
|
| RawSocket.connect("127.0.0.1", server.port).then((socket) {
|
| server.close();
|
| socket.close();
|
| - Expect.throws(() => socket.port, (e) => e is SocketException);
|
| Expect.throws(() => socket.remotePort, (e) => e is SocketException);
|
| - Expect.throws(() => socket.address, (e) => e is SocketException);
|
| Expect.throws(() => socket.remoteAddress, (e) => e is SocketException);
|
| asyncEnd();
|
| });
|
|
|