2
0
mirror of https://github.com/araddon/dateparse.git synced 2026-06-26 21:30:51 +08:00

fix 24 hour range on date parse

This commit is contained in:
Aaron Raddon
2014-05-06 12:34:24 -07:00
parent 7b91f1acd1
commit 36dfef3c74
2 changed files with 3 additions and 3 deletions

View File

@@ -92,9 +92,9 @@ func TestParse(t *testing.T) {
assert.T(t, "2009-08-13 05:15:09 +0000 UTC" == fmt.Sprintf("%v", ts2.In(time.UTC)))
//2014-04-26 05:24:37.3186369
ts, err = ParseAny("2014-04-26 05:24:37.3186369")
ts, err = ParseAny("2014-04-26 17:24:37.3186369")
assert.T(t, err == nil)
u.Debug(ts.Unix(), ts)
assert.T(t, "2014-04-26 05:24:37.3186369 +0000 UTC" == fmt.Sprintf("%v", ts.In(time.UTC)))
assert.T(t, "2014-04-26 17:24:37.3186369 +0000 UTC" == fmt.Sprintf("%v", ts.In(time.UTC)))
}