Index: tests/standalone/io/socket_info_ipv4_test.dart |
diff --git a/tests/standalone/io/socket_info_ipv4_test.dart b/tests/standalone/io/socket_info_ipv4_test.dart |
index 08baebcf03d83fbf663ebacbf34a5fdeb669cb56..9d869f0076c6e13b7b218fd185a058f1ea381d61 100644 |
--- a/tests/standalone/io/socket_info_ipv4_test.dart |
+++ b/tests/standalone/io/socket_info_ipv4_test.dart |
@@ -18,7 +18,8 @@ void testHostAndPort() { |
Expect.equals(clientSocket.remoteAddress.address, "127.0.0.1"); |
Expect.equals( |
clientSocket.remoteAddress.type, InternetAddressType.IP_V4); |
- Expect.listEquals(clientSocket.remoteAddress.rawAddress, [127, 0, 0, 1]); |
+ Expect |
+ .listEquals(clientSocket.remoteAddress.rawAddress, [127, 0, 0, 1]); |
socket.destroy(); |
clientSocket.destroy(); |
server.close(); |