[#1671] Replace interface{} with any

gopatch:
```
@@
@@
-interface{}
+any
```

Signed-off-by: Evgenii Stratonikov <e.stratonikov@yadro.com>
This commit is contained in:
Evgenii Stratonikov 2025-03-13 08:57:35 +03:00 committed by Evgenii Stratonikov
parent 737788b35f
commit bcc84c85a0
2 changed files with 5 additions and 5 deletions

View file

@ -404,8 +404,8 @@ func TestEvacuateSingleProcess(t *testing.T) {
require.NoError(t, e.shards[ids[0].String()].SetMode(context.Background(), mode.ReadOnly))
require.NoError(t, e.shards[ids[1].String()].SetMode(context.Background(), mode.ReadOnly))
blocker := make(chan interface{})
running := make(chan interface{})
blocker := make(chan any)
running := make(chan any)
var prm EvacuateShardPrm
prm.ShardID = ids[1:2]
@ -446,8 +446,8 @@ func TestEvacuateObjectsAsync(t *testing.T) {
require.NoError(t, e.shards[ids[0].String()].SetMode(context.Background(), mode.ReadOnly))
require.NoError(t, e.shards[ids[1].String()].SetMode(context.Background(), mode.ReadOnly))
blocker := make(chan interface{})
running := make(chan interface{})
blocker := make(chan any)
running := make(chan any)
var prm EvacuateShardPrm
prm.ShardID = ids[1:2]