Skip to content

Commit

Permalink
PR comments
Browse files Browse the repository at this point in the history
  • Loading branch information
ludydoo committed Jun 26, 2023
1 parent acbbb7e commit 4e2077f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/reconciler/reconciler_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -692,8 +692,8 @@ var _ = Describe("Reconciler", func() {
})

By("expecting a conflict", func() {
result, err := r.Reconcile(ctx, req)
Expect(result).To(Equal(reconcile.Result{}))
res, err := r.Reconcile(ctx, req)
Expect(res).To(Equal(reconcile.Result{}))
Expect(apierrors.IsConflict(err)).To(BeTrue())
})

Expand Down

0 comments on commit 4e2077f

Please sign in to comment.