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

Unified Diff: tests/standalone/io/http_cookie_date_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_cookie_date_test.dart
diff --git a/tests/standalone/io/http_cookie_date_test.dart b/tests/standalone/io/http_cookie_date_test.dart
index bb7a1a24cd70f4fa881cc305a7ce62239263a788..03907eacdf10a0fe9c67897d6afd2f8f1fa43b3b 100644
--- a/tests/standalone/io/http_cookie_date_test.dart
+++ b/tests/standalone/io/http_cookie_date_test.dart
@@ -43,13 +43,8 @@ part "../../../sdk/lib/io/socket.dart";
void testParseHttpCookieDate() {
Expect.throws(() => HttpDate._parseCookieDate(""));
- test(int year,
- int month,
- int day,
- int hours,
- int minutes,
- int seconds,
- String formatted) {
+ test(int year, int month, int day, int hours, int minutes, int seconds,
+ String formatted) {
DateTime date =
new DateTime.utc(year, month, day, hours, minutes, seconds, 0);
Expect.equals(date, HttpDate._parseCookieDate(formatted));

Powered by Google App Engine
This is Rietveld 408576698