Skip to content

Commit

Permalink
Reconciliation test: change assert type
Browse files Browse the repository at this point in the history
Making the new linter version happy.

Signed-off-by: Federico Paolinelli <fpaoline@redhat.com>
  • Loading branch information
fedepaol committed Mar 26, 2024
1 parent 68926af commit 7ac1008
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/k8s/controllers/reconciliation_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -505,7 +505,7 @@ var _ = Describe("Layer2 Status Controller", func() {
toCheck := v1beta1.ServiceL2Status{}
err := k8sClient.Get(context.TODO(), client.ObjectKey{Name: statusObjName, Namespace: testNamespace}, &toCheck)
return apierrors.IsNotFound(err)
}, 5*time.Second, 200*time.Millisecond).Should(Equal(true))
}, 5*time.Second, 200*time.Millisecond).Should(BeTrue())
})
})
})

0 comments on commit 7ac1008

Please sign in to comment.