Index: tests/standalone/io/test_utils.dart |
diff --git a/tests/standalone/io/test_utils.dart b/tests/standalone/io/test_utils.dart |
index ace66035c4f3129ac8c1c4ebe440d4d773d41908..c9c29400d84e58e3ffb48ccad68f32c417c2abda 100644 |
--- a/tests/standalone/io/test_utils.dart |
+++ b/tests/standalone/io/test_utils.dart |
@@ -7,7 +7,7 @@ import 'dart:io'; |
Future<int> freeIPv4AndIPv6Port() async { |
var socket = |
- await ServerSocket.bind(InternetAddress.ANY_IP_V6, 0, v6Only: false); |
+ await ServerSocket.bind(InternetAddress.ANY_IP_V6, 0, v6Only: false); |
int port = socket.port; |
await socket.close(); |
return port; |
@@ -24,7 +24,7 @@ Future retry(Future fun(), {int maxCount: 10}) async { |
return await fun(); |
} catch (e, stack) { |
print("Failed to execute test closure (retry id: ${id}) in attempt $i " |
- "(${maxCount - i} retries left)."); |
+ "(${maxCount - i} retries left)."); |
print("Exception: ${e}"); |
print("Stacktrace: ${stack}"); |
} |