[#428] linter: Fix unkeyed assignment

Thanks to gopls.

Signed-off-by: Dmitrii Stepanov <d.stepanov@yadro.com>
feature/390-tree_cli-backup
Dmitrii Stepanov 2023-06-22 10:50:06 +03:00 committed by Evgenii Stratonikov
parent cac4ed93d6
commit 43d263c3d5
1 changed files with 1 additions and 1 deletions

View File

@ -37,7 +37,7 @@ func benchmarkTreeVsSearch(b *testing.B, objCount int) {
b.Fatal(err)
}
_, err = te.ng.TreeAddByPath(context.Background(), d, treeID, pilorama.AttributeFilename, nil,
[]pilorama.KeyValue{{pilorama.AttributeFilename, []byte(strconv.Itoa(i))}})
[]pilorama.KeyValue{{Key: pilorama.AttributeFilename, Value: []byte(strconv.Itoa(i))}})
if err != nil {
b.Fatal(err)
}