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

Unified Diff: tests/standalone/io/http_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_date_test.dart
diff --git a/tests/standalone/io/http_date_test.dart b/tests/standalone/io/http_date_test.dart
index 439c65d14a3bc8508656e3f9cf1e29a75ce004cb..d139e809181d029e84414b8d28f7af1ec2886eb3 100644
--- a/tests/standalone/io/http_date_test.dart
+++ b/tests/standalone/io/http_date_test.dart
@@ -16,8 +16,7 @@ void testParseHttpDate() {
date = new DateTime.utc(1970, DateTime.JANUARY, 1, 0, 0, 0, 0);
Expect.equals(date, HttpDate.parse("Thu, 1 Jan 1970 00:00:00 GMT"));
- Expect.equals(date,
- HttpDate.parse("Thursday, 1-Jan-1970 00:00:00 GMT"));
+ Expect.equals(date, HttpDate.parse("Thursday, 1-Jan-1970 00:00:00 GMT"));
Expect.equals(date, HttpDate.parse("Thu Jan 1 00:00:00 1970"));
date = new DateTime.utc(2012, DateTime.MARCH, 5, 23, 59, 59, 0);
@@ -27,13 +26,8 @@ void testParseHttpDate() {
}
void testFormatParseHttpDate() {
- test(int year,
- int month,
- int day,
- int hours,
- int minutes,
- int seconds,
- String expectedFormatted) {
+ test(int year, int month, int day, int hours, int minutes, int seconds,
+ String expectedFormatted) {
DateTime date;
String formatted;
date = new DateTime.utc(year, month, day, hours, minutes, seconds, 0);

Powered by Google App Engine
This is Rietveld 408576698