From 2dfc9fedd30bf3d40c4c3e97adc06fe3aad34361 Mon Sep 17 00:00:00 2001 From: Alan Du Date: Thu, 1 Jun 2017 23:22:35 +0100 Subject: Store fractional seconds as a u32 instead of a f64 Drops precision down to the nanoseconds --- tests/parser.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/parser.rs') diff --git a/tests/parser.rs b/tests/parser.rs index 2db2cfb..2282416 100644 --- a/tests/parser.rs +++ b/tests/parser.rs @@ -463,7 +463,7 @@ fn datetimes() { t!("2016-09-09T09:09:09Z"); t!("2016-09-09T09:09:09.1Z"); t!("2016-09-09T09:09:09.2+10:00"); - t!("2016-09-09T09:09:09.0123456789-02:00"); + t!("2016-09-09T09:09:09.123456789-02:00"); bad!("foo = 2016-09-09T09:09:09.Z", "failed to parse date"); bad!("foo = 2016-9-09T09:09:09Z", "failed to parse date"); bad!("foo = 2016-09-09T09:09:09+2:00", "failed to parse date"); -- cgit v1.2.3