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 import "package:expect/expect.dart"; |
| 6 |
5 // At some point dart was emitting a bad padding 0 for Dates where the ms were | 7 // At some point dart was emitting a bad padding 0 for Dates where the ms were |
6 // ending with 10. | 8 // ending with 10. |
7 | 9 |
8 main() { | 10 main() { |
9 String s = "2012-01-30 08:30:00.010"; | 11 String s = "2012-01-30 08:30:00.010"; |
10 DateTime d = DateTime.parse(s); | 12 DateTime d = DateTime.parse(s); |
11 Expect.equals(s, d.toString()); | 13 Expect.equals(s, d.toString()); |
12 } | 14 } |
OLD | NEW |