forked from TrueCloudLab/frostfs-node
[#1317] go.mod: Use range over int
Since Go 1.22 a "for" statement with a "range" clause is able to iterate through integer values from zero to an upper limit. gopatch script: @@ var i, e expression @@ -for i := 0; i <= e - 1; i++ { +for i := range e { ... } @@ var i, e expression @@ -for i := 0; i <= e; i++ { +for i := range e + 1 { ... } @@ var i, e expression @@ -for i := 0; i < e; i++ { +for i := range e { ... } Signed-off-by: Ekaterina Lebedeva <ekaterina.lebedeva@yadro.com>
This commit is contained in:
parent
2b3fc50681
commit
a685fcdc96
66 changed files with 135 additions and 135 deletions
|
@ -208,7 +208,7 @@ func TestPersistentShardID(t *testing.T) {
|
|||
require.NoError(t, te.ng.Close(context.Background()))
|
||||
|
||||
newTe := newEngineWithErrorThreshold(t, dir, 1)
|
||||
for i := 0; i < len(newTe.shards); i++ {
|
||||
for i := range len(newTe.shards) {
|
||||
require.Equal(t, te.shards[i].id, newTe.shards[i].id)
|
||||
}
|
||||
require.NoError(t, newTe.ng.Close(context.Background()))
|
||||
|
@ -269,7 +269,7 @@ func TestReload(t *testing.T) {
|
|||
e, currShards := engineWithShards(t, removePath, shardNum)
|
||||
|
||||
var rcfg ReConfiguration
|
||||
for i := 0; i < len(currShards)-1; i++ { // without one of the shards
|
||||
for i := range len(currShards) - 1 { // without one of the shards
|
||||
rcfg.AddShard(currShards[i], nil)
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue