Skip to content

Commit

Permalink
Update time_test.go
Browse files Browse the repository at this point in the history
Signed-off-by: Carl Vincent <carlv@stripe.com>
  • Loading branch information
carlv-stripe committed Apr 3, 2023
1 parent 2f7945a commit f514ed1
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions time_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ var (
str string // its marshalled representation
utcStr string // the marshaled representation as utc
}{
{[]byte("2014-12-15"), time.Date(2014, 12, 15, 0, 0, 0, 0, time.UTC), "2014-12-15T00:00:00.000Z", "2014-12-15T00:00:00.000Z"},
{[]byte("2014-12-15 08:00:00"), time.Date(2014, 12, 15, 8, 0, 0, 0, time.UTC), "2014-12-15T08:00:00.000Z", "2014-12-15T08:00:00.000Z"},
{[]byte("2014-12-15T08:00:00"), time.Date(2014, 12, 15, 8, 0, 0, 0, time.UTC), "2014-12-15T08:00:00.000Z", "2014-12-15T08:00:00.000Z"},
{[]byte("2014-12-15T08:00"), time.Date(2014, 12, 15, 8, 0, 0, 0, time.UTC), "2014-12-15T08:00:00.000Z", "2014-12-15T08:00:00.000Z"},
Expand Down

0 comments on commit f514ed1

Please sign in to comment.