| 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 c0057ee2c7f8dd7b423d8f28b1b42b36deb70033..56bee7a9ee00a6427b6aa1d5719a5c7ea7e3cef5 100644
|
| --- a/tests/standalone/io/http_cookie_date_test.dart
|
| +++ b/tests/standalone/io/http_cookie_date_test.dart
|
| @@ -25,7 +25,8 @@ void testParseHttpCookieDate() {
|
| int minutes,
|
| int seconds,
|
| String formatted) {
|
| - DateTime date = new DateTime.utc(year, month, day, hours, minutes, seconds, 0);
|
| + DateTime date =
|
| + new DateTime.utc(year, month, day, hours, minutes, seconds, 0);
|
| Expect.equals(date, HttpDate._parseCookieDate(formatted));
|
| }
|
|
|
|
|