forked from TrueCloudLab/frostfs-api-go
[#139] v2/object: Fix string conversion errors for go1.15
Signed-off-by: Alex Vanin <alexey@nspcc.ru>
This commit is contained in:
parent
15f803119b
commit
790add6538
1 changed files with 3 additions and 2 deletions
|
@ -2,6 +2,7 @@ package object_test
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
|
"strconv"
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
"github.com/nspcc-dev/neofs-api-go/v2/object"
|
"github.com/nspcc-dev/neofs-api-go/v2/object"
|
||||||
|
@ -483,7 +484,7 @@ func generateHeader(ln uint64) *object.Header {
|
||||||
hdr.SetHomomorphicHash(generateChecksum("Homomorphic Hash"))
|
hdr.SetHomomorphicHash(generateChecksum("Homomorphic Hash"))
|
||||||
hdr.SetObjectType(object.TypeRegular)
|
hdr.SetObjectType(object.TypeRegular)
|
||||||
hdr.SetPayloadHash(generateChecksum("Payload Hash"))
|
hdr.SetPayloadHash(generateChecksum("Payload Hash"))
|
||||||
hdr.SetSessionToken(generateSessionToken(string(ln)))
|
hdr.SetSessionToken(generateSessionToken(strconv.Itoa(int(ln))))
|
||||||
|
|
||||||
return hdr
|
return hdr
|
||||||
}
|
}
|
||||||
|
@ -684,7 +685,7 @@ func generateRangeHashResponseBody(n int) *object.GetRangeHashResponseBody {
|
||||||
|
|
||||||
list := make([][]byte, n)
|
list := make([][]byte, n)
|
||||||
for i := 0; i < n; i++ {
|
for i := 0; i < n; i++ {
|
||||||
list[i] = []byte("Some homomorphic hash data" + string(n))
|
list[i] = []byte("Some homomorphic hash data" + strconv.Itoa(n))
|
||||||
}
|
}
|
||||||
|
|
||||||
resp.SetType(refs.TillichZemor)
|
resp.SetType(refs.TillichZemor)
|
||||||
|
|
Loading…
Reference in a new issue