From: Anthony Fok Date: Tue, 3 Jan 2017 18:45:29 +0000 (-0700) Subject: tpl: Fix Unix time test case in TestDateFormat() X-Git-Tag: v0.19~133 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=19b6fdf2;p=brevno-suite%2Fhugo tpl: Fix Unix time test case in TestDateFormat() Fixes #2855 --- diff --git a/tpl/template_funcs_test.go b/tpl/template_funcs_test.go index f74266b3..37f075a9 100644 --- a/tpl/template_funcs_test.go +++ b/tpl/template_funcs_test.go @@ -2272,7 +2272,8 @@ func TestDateFormat(t *testing.T) { {"Monday, Jan 2, 2006", "2015-01-21", "Wednesday, Jan 21, 2015"}, {"Monday, Jan 2, 2006", time.Date(2015, time.January, 21, 0, 0, 0, 0, time.UTC), "Wednesday, Jan 21, 2015"}, {"This isn't a date layout string", "2015-01-21", "This isn't a date layout string"}, - {"Monday, Jan 2, 2006", 1421733600, "Tuesday, Jan 20, 2015"}, + // The following test case gives either "Tuesday, Jan 20, 2015" or "Monday, Jan 19, 2015" depending on the local time zone + {"Monday, Jan 2, 2006", 1421733600, time.Unix(1421733600, 0).Format("Monday, Jan 2, 2006")}, {"Monday, Jan 2, 2006", 1421733600.123, false}, {time.RFC3339, time.Date(2016, time.March, 3, 4, 5, 0, 0, time.UTC), "2016-03-03T04:05:00Z"}, {time.RFC1123, time.Date(2016, time.March, 3, 4, 5, 0, 0, time.UTC), "Thu, 03 Mar 2016 04:05:00 UTC"},