From e5ac093b2d03cfd85726e551fc741bed26d1afd3 Mon Sep 17 00:00:00 2001 From: Valeriy Solovyov Date: Wed, 16 Sep 2020 23:29:57 +0300 Subject: [PATCH] Fixing parsing from string --- cast_test.go | 1 - caste.go | 7 +++---- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/cast_test.go b/cast_test.go index 8ee2e6d..c54ba26 100644 --- a/cast_test.go +++ b/cast_test.go @@ -1221,7 +1221,6 @@ func TestToTimeEE(t *testing.T) { {"1234567890", time.Date(2009, 2, 13, 23, 31, 30, 0, time.UTC), false}, {time.Date(2009, 2, 13, 23, 31, 30, 0, time.UTC), time.Date(2009, 2, 13, 23, 31, 30, 0, time.UTC), false}, // errors - {"2006", time.Time{}, true}, {testing.T{}, time.Time{}, true}, } diff --git a/caste.go b/caste.go index 8f5885e..d196942 100644 --- a/caste.go +++ b/caste.go @@ -1272,11 +1272,10 @@ func parseDateWith(s string, dates []string) (d time.Time, e error) { if d, e = time.Parse(dateType, s); e == nil { return } - if i, err := strconv.Atoi(dateType); err == nil { - return time.Unix(int64(i), 0), nil - } - } + if i, err := strconv.Atoi(s); err == nil { + return time.Unix(int64(i), 0), nil + } return d, fmt.Errorf("unable to parse date: %s", s) }