Fix ints being capped at 32-bits on 32-bit archs (#4054)

This commit is contained in:
Daniel Nelson
2018-04-20 14:56:28 -07:00
committed by GitHub
parent 4df09fbd39
commit 493ec3773b
3 changed files with 18 additions and 4 deletions

View File

@@ -282,7 +282,7 @@ var ptests = []struct {
"cpu",
map[string]string{},
map[string]interface{}{
"value": 9223372036854775807,
"value": int64(9223372036854775807),
},
time.Unix(42, 0),
),