Skip to content

Commit 79c0459

Browse files
authored
Merge pull request #675 from dswarbrick/fix-32bit-overflows
Fix overflows of untyped int constants on 32-bit
2 parents 1dade5b + 008d7b8 commit 79c0459

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

helpers/templates/time_test.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ func TestHumanizeTimestamp(t *testing.T) {
8989
{name: "negative", input: -1, expected: "1969-12-31 23:59:59 +0000 UTC"},
9090
{name: "one", input: 1, expected: "1970-01-01 00:00:01 +0000 UTC"},
9191
{name: "past", input: 1234567, expected: "1970-01-15 06:56:07 +0000 UTC"},
92-
{name: "future", input: 9223372036, expected: "2262-04-11 23:47:16 +0000 UTC"},
92+
{name: "future", input: int64(9223372036), expected: "2262-04-11 23:47:16 +0000 UTC"},
9393
// Uint
9494
{name: "zero", input: uint64(0), expected: "1970-01-01 00:00:00 +0000 UTC"},
9595
{name: "one", input: uint64(1), expected: "1970-01-01 00:00:01 +0000 UTC"},
@@ -118,6 +118,6 @@ func TestHumanizeTimestamp(t *testing.T) {
118118
}
119119

120120
func TestHumanizeTimestampError(t *testing.T) {
121-
_, err := HumanizeTimestamp(math.MaxInt64)
121+
_, err := HumanizeTimestamp(int64(math.MaxInt64))
122122
require.Error(t, err)
123123
}

0 commit comments

Comments
 (0)