Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
remyleone committed Aug 21, 2024
1 parent b6960e8 commit 55abbb3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions internal/args/unmarshal_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ func TestUnmarshalStruct(t *testing.T) {
"time=2006-01-02T15:04:05Z",
},
expected: &WellKnownTypes{
Time: time.Date(2006, 0o1, 0o2, 15, 0o4, 0o5, 0, time.UTC),
Time: time.Date(2006, 1, 2, 15, 4, 5, 0, time.UTC),
},
}))

Expand All @@ -258,7 +258,7 @@ func TestUnmarshalStruct(t *testing.T) {
"time=+1m1s",
},
expected: &WellKnownTypes{
Time: time.Date(1970, 0o1, 0o1, 0, 1, 1, 0, time.UTC),
Time: time.Date(1970, 1, 1, 0, 1, 1, 0, time.UTC),
},
}))

Expand Down

0 comments on commit 55abbb3

Please sign in to comment.