mirror of
https://github.com/eosswedenorg/thalos
synced 2026-06-16 04:24:56 +02:00
internal/server/helpers_test.go: set large untyped int constants to int64.
This commit is contained in:
parent
5121098cfe
commit
621f9ceeea
1 changed files with 2 additions and 2 deletions
|
|
@ -23,7 +23,7 @@ func TestParseTableDeltaData(t *testing.T) {
|
|||
map[string]interface{}{
|
||||
"consumed": 8107,
|
||||
"last_ordinal": 308855607,
|
||||
"value_ex": 3854030492,
|
||||
"value_ex": int64(3854030492),
|
||||
},
|
||||
},
|
||||
"slice": []interface{}{
|
||||
|
|
@ -51,7 +51,7 @@ func TestParseTableDeltaData(t *testing.T) {
|
|||
"average_block_net_usage": map[string]interface{}{
|
||||
"consumed": 8107,
|
||||
"last_ordinal": 308855607,
|
||||
"value_ex": 3854030492,
|
||||
"value_ex": int64(3854030492),
|
||||
},
|
||||
"slice": []interface{}{1, 2, "tree"},
|
||||
"single_value": uint32(12933729),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue