1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

time: fix typo in test (#7174)

This commit is contained in:
Takahiro Yaota 2020-12-08 01:21:12 +09:00 committed by GitHub
parent fd689f5fdd
commit b5982b638a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -58,7 +58,7 @@ fn test_iso8601_parse_utc() {
assert t_utc.day == 5
}
fn test_iso8601_parse_loacl() {
fn test_iso8601_parse_local() {
format_utc := '2020-06-05T15:38:06.015959'
t_utc := time.parse_iso8601(format_utc) or {
panic(err)