Skip to content

Commit 5e867e2

Browse files
committed
fix lint
1 parent ee27a79 commit 5e867e2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/migrator/migrator_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ func TestMigrateWithRetry(t *testing.T) {
107107
start := time.Now()
108108
// Return an error during the first 500 milliseconds
109109
dclient.PrependReactor("list", "*",
110-
func(act k8stesting.Action) (bool, runtime.Object, error) {
110+
func(_ k8stesting.Action) (bool, runtime.Object, error) {
111111
if time.Since(start) < 500*time.Millisecond {
112112
return true, nil, errors.New("failed to list resources")
113113
}

0 commit comments

Comments
 (0)