Commit 24d5b25a authored by Janoš Guljaš's avatar Janoš Guljaš Committed by GitHub

fix int conversion to string in statestore test (#574)

parent a3bfe87f
......@@ -160,7 +160,7 @@ func insert(t *testing.T, store storage.StateStorer, prefix string, count int) {
t.Helper()
for i := 0; i < count; i++ {
k := prefix + string(i)
k := prefix + fmt.Sprint(i)
err := store.Put(k, i)
if err != nil {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment