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

Unified Diff: tests/standalone/io/secure_socket_argument_test.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/secure_socket_argument_test.dart
diff --git a/tests/standalone/io/secure_socket_argument_test.dart b/tests/standalone/io/secure_socket_argument_test.dart
index 1fb34560e41d266d346ddaed0cd895aaa67ce6de..8d24d02ed7121ee0b0a8a5d6f5e0c8fa38cedec9 100644
--- a/tests/standalone/io/secure_socket_argument_test.dart
+++ b/tests/standalone/io/secure_socket_argument_test.dart
@@ -6,12 +6,10 @@ import "package:expect/expect.dart";
import "dart:io";
void testServerSocketArguments() {
- Expect.throws(() =>
- SecureServerSocket.bind(SERVER_ADDRESS, 65536, null));
- Expect.throws(() =>
- SecureServerSocket.bind(SERVER_ADDRESS, -1, null));
- Expect.throws(() =>
- SecureServerSocket.bind(SERVER_ADDRESS, 0, "not a context"));
+ Expect.throws(() => SecureServerSocket.bind(SERVER_ADDRESS, 65536, null));
+ Expect.throws(() => SecureServerSocket.bind(SERVER_ADDRESS, -1, null));
+ Expect.throws(
+ () => SecureServerSocket.bind(SERVER_ADDRESS, 0, "not a context"));
}
void main() {

Powered by Google App Engine
This is Rietveld 408576698