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

Unified Diff: tests/standalone/io/socket_info_ipv4_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/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();

Powered by Google App Engine
This is Rietveld 408576698