From 3b9b5eb646755228b1e55c7ee80667048bfde07f Mon Sep 17 00:00:00 2001 From: gorhill Date: Fri, 30 Aug 2013 10:10:02 -0400 Subject: [PATCH] fixed time layout --- cronexpression_test.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/cronexpression_test.go b/cronexpression_test.go index 451b09b..e3da33e 100644 --- a/cronexpression_test.go +++ b/cronexpression_test.go @@ -98,11 +98,11 @@ var crontests = []crontest{ // Days of week { "0 0 * * MON", - "MON 2006-01-02 15:04", + "Mon 2006-01-02 15:04", []crontimes{ - {"2013-01-01 00:00:00", "MON 2013-01-07 00:00"}, - {"2013-01-28 00:00:00", "MON 2013-02-04 00:00"}, - {"2013-12-30 00:30:00", "MON 2014-01-06 00:00"}, + {"2013-01-01 00:00:00", "Mon 2013-01-07 00:00"}, + {"2013-01-28 00:00:00", "Mon 2013-02-04 00:00"}, + {"2013-12-30 00:30:00", "Mon 2014-01-06 00:00"}, }, },