aboutsummaryrefslogtreecommitdiff
path: root/tests/parser.rs
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2017-06-01 17:57:13 -0500
committerGitHub <noreply@github.com>2017-06-01 17:57:13 -0500
commit00c1763e0b89337f980d18888bb1935f250afd7b (patch)
treefcfde60a5d645769d536f9b7c0726560ed225a14 /tests/parser.rs
parent36431af975092578648225c60a8494cb0d5f6844 (diff)
parent2dfc9fedd30bf3d40c4c3e97adc06fe3aad34361 (diff)
downloadmilf-rs-00c1763e0b89337f980d18888bb1935f250afd7b.tar.gz
milf-rs-00c1763e0b89337f980d18888bb1935f250afd7b.zip
Merge pull request #187 from alanhdu/master
More fuzzing fixes
Diffstat (limited to 'tests/parser.rs')
-rw-r--r--tests/parser.rs2
1 files changed, 1 insertions, 1 deletions
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");