| 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));
|
|
|