style: apply any / all automated lint fixes (#15644)

This commit is contained in:
Jacob Gadikian
2023-03-31 13:48:41 +02:00
committed by GitHub
parent 64ab721a08
commit a9546bfad0
46 changed files with 37 additions and 130 deletions
+1 -1
View File
@@ -85,7 +85,7 @@ func TestDiffKVStores(t *testing.T) {
// Same keys, different value. Comparisons will be nil as prefixes are skipped.
prefix := []byte("prefix:")
k1Prefixed := append(prefix, k1...) //nolint:gocritic // append is fine here
k1Prefixed := append(prefix, k1...)
store1.Set(k1Prefixed, v1)
store2.Set(k1Prefixed, v2)
checkDiffResults(t, store1, store2)