mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
Ignore unchecked error
This commit is contained in:
parent
0126d8a0c2
commit
114a51b29c
@ -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 {
|
||||
|
Loading…
Reference in New Issue
Block a user