Ignore unchecked error

This commit is contained in:
katexochen 2022-09-12 13:56:02 +02:00 committed by Paul Meyer
parent 0126d8a0c2
commit 114a51b29c

View File

@ -180,7 +180,7 @@ var _ = Describe("NodeImage controller", func() {
return k8sClient.Get(ctx, joiningPendingNodeLookupKey, pendingNode)
}).Should(Succeed())
Eventually(func() updatev1alpha1.CSPNodeState {
k8sClient.Get(ctx, joiningPendingNodeLookupKey, pendingNode)
_ = k8sClient.Get(ctx, joiningPendingNodeLookupKey, pendingNode)
return pendingNode.Status.CSPNodeState
}).Should(Equal(updatev1alpha1.NodeStateReady))
Eventually(func() int {