Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(514)

Unified Diff: tests/standalone/io/test_utils.dart

Issue 2771453003: Format all tests. (Closed)
Patch Set: Format files Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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}");
}

Powered by Google App Engine
This is Rietveld 408576698