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

Unified Diff: tests/corelib/date_time4_test.dart

Issue 11770004: Rename Date to DateTime. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Address comments and keep Backwards-compatibility class Date. Created 7 years, 11 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
« no previous file with comments | « tests/corelib/date_time3_test.dart ('k') | tests/corelib/date_time5_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/corelib/date_time4_test.dart
diff --git a/tests/corelib/date_time4_test.dart b/tests/corelib/date_time4_test.dart
index 261111fff7b925c53dd8b6bf5c62659b497c1d0d..fad7020cec50bb2f16f0ec72db35c177ca4fdc6f 100644
--- a/tests/corelib/date_time4_test.dart
+++ b/tests/corelib/date_time4_test.dart
@@ -9,7 +9,7 @@ main() {
// here), we round.
// If (eventually) we support more than just milliseconds this test could
// fail. Please update the test in this case.
- Date dt1 = new Date.fromString("1999-01-02 23:59:59.999519");
+ DateTime dt1 = new DateTime.fromString("1999-01-02 23:59:59.999519");
Expect.equals(1999, dt1.year);
Expect.equals(1, dt1.month);
Expect.equals(3, dt1.day);
@@ -18,7 +18,7 @@ main() {
Expect.equals(0, dt1.second);
Expect.equals(0, dt1.millisecond);
Expect.equals(false, dt1.isUtc);
- dt1 = new Date.fromString("1999-01-02 23:58:59.999519Z");
+ dt1 = new DateTime.fromString("1999-01-02 23:58:59.999519Z");
Expect.equals(1999, dt1.year);
Expect.equals(1, dt1.month);
Expect.equals(2, dt1.day);
@@ -27,7 +27,7 @@ main() {
Expect.equals(0, dt1.second);
Expect.equals(0, dt1.millisecond);
Expect.equals(true, dt1.isUtc);
- dt1 = new Date.fromString("0009-09-09 09:09:09.009411Z");
+ dt1 = new DateTime.fromString("0009-09-09 09:09:09.009411Z");
Expect.equals(9, dt1.year);
Expect.equals(9, dt1.month);
Expect.equals(9, dt1.day);
@@ -37,7 +37,7 @@ main() {
Expect.equals(9, dt1.millisecond);
Expect.equals(true, dt1.isUtc);
String svnDate = "2012-03-30T04:28:13.752341Z";
- dt1 = new Date.fromString(svnDate);
+ dt1 = new DateTime.fromString(svnDate);
Expect.equals(2012, dt1.year);
Expect.equals(3, dt1.month);
Expect.equals(30, dt1.day);
« no previous file with comments | « tests/corelib/date_time3_test.dart ('k') | tests/corelib/date_time5_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698