internal/gojsonschema: fix test failing with Go 1.17 rc (#3591)

Replace the time "01:01:01,1111" by "14:30", which is a ISO 8601 valid time,
but not a RFC3339 "full time", and is rejected as such by the TimeFormatChecker.

Fixes #3589

Signed-off-by: Olivier Lemasle <o.lemasle@gmail.com>
This commit is contained in:
Olivier Lemasle
2021-06-28 21:59:43 +02:00
committed by GitHub
parent 47feea7cbb
commit 123ba6b841
@@ -15,7 +15,7 @@
},
{
"description": "only RFC3339 not all of ISO 8601 are valid",
"data": "01:01:01,1111",
"data": "14:30",
"valid": false
}
]