Skip to content

Commit

Permalink
fixed lint
Browse files Browse the repository at this point in the history
  • Loading branch information
sbryzak committed May 1, 2024
1 parent 193ac5b commit cdd1bcd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions controllers/deactivation/deactivation_controller_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ func TestReconcile(t *testing.T) {
}

// when
res, err := r.Reconcile(context.TODO(), req)
_, err := r.Reconcile(context.TODO(), req)

require.Error(t, err)
require.Equal(t, "mock error", err.Error())
Expand Down Expand Up @@ -323,7 +323,7 @@ func TestReconcile(t *testing.T) {
}

// when
res, err := r.Reconcile(context.TODO(), req)
_, err := r.Reconcile(context.TODO(), req)

require.Error(t, err)
require.Equal(t, "mock error", err.Error())
Expand Down

0 comments on commit cdd1bcd

Please sign in to comment.