| Index: tests/corelib/src/DateTimeTest.dart
|
| diff --git a/tests/corelib/src/DateTimeTest.dart b/tests/corelib/src/DateTimeTest.dart
|
| index 984087283995ee1f6afc3984ebf0240dfed5bc55..42b358e3517948443fb5ec8ce3ac5a81a345a796 100644
|
| --- a/tests/corelib/src/DateTimeTest.dart
|
| +++ b/tests/corelib/src/DateTimeTest.dart
|
| @@ -323,6 +323,7 @@ class DateTest {
|
| // TODO(floitsch): Clean up the Date API that deals with strings.
|
| var dt1 = new Date.fromString("2011-05-11 18:58:35Z");
|
| Expect.equals(1305140315000, dt1.value);
|
| + Expect.isTrue(dt1.isUtc());
|
| var str = dt1.toString();
|
| var dt2 = new Date.fromString(str);
|
| Expect.equals(true, dt1 == dt2);
|
|
|