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

Unified Diff: tests/standalone/io/http_request_pipeling_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/http_request_pipeling_test.dart
diff --git a/tests/standalone/io/http_request_pipeling_test.dart b/tests/standalone/io/http_request_pipeling_test.dart
index 0da43dfa765a73e3da65337fa5c25678063f8f3a..92b9854945e4358cc0e812482a531fa05d7bded6 100644
--- a/tests/standalone/io/http_request_pipeling_test.dart
+++ b/tests/standalone/io/http_request_pipeling_test.dart
@@ -20,13 +20,13 @@ void main() {
request.response.close();
if (request.uri.path == "/done") {
request.response.done.then((_) {
- Expect.equals(REQUEST_COUNT + 1, count);
+ Expect.equals(REQUEST_COUNT + 1, count);
server.close();
});
}
});
Socket.connect("127.0.0.1", server.port).then((s) {
- s.listen((data) { });
+ s.listen((data) {});
for (int i = 0; i < REQUEST_COUNT; i++) {
s.write("GET /$i HTTP/1.1\r\nX-Header-1: 111\r\n\r\n");
}

Powered by Google App Engine
This is Rietveld 408576698