OLD | NEW |
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
4 | 4 |
5 // At some point dart was emitting a bad padding 0 for Dates where the ms were | 5 // At some point dart was emitting a bad padding 0 for Dates where the ms were |
6 // ending with 10. | 6 // ending with 10. |
7 | 7 |
8 main() { | 8 main() { |
9 String s = "2012-01-30 08:30:00.010"; | 9 String s = "2012-01-30 08:30:00.010"; |
10 Date d = new Date.fromString(s); | 10 DateTime d = new DateTime.fromString(s); |
11 Expect.equals(s, d.toString()); | 11 Expect.equals(s, d.toString()); |
12 } | 12 } |
OLD | NEW |