chore: remove unused parameters

They were not detected by revive in function literals.
This commit is contained in:
Vincent Bernat
2024-02-08 08:30:23 +01:00
parent 4fbfda2501
commit b3a9f6ab2e
13 changed files with 17 additions and 17 deletions

View File

@@ -130,7 +130,7 @@ func TestRoot(t *testing.T) {
})
// New container
t.Run("new container", func(t *testing.T) {
t.Run("new container", func(_ *testing.T) {
dockerClientMock.EXPECT().
ContainerList(gomock.Any(), gomock.Any()).
Return([]types.Container{{ID: "new one"}}, nil)