mirror of
https://github.com/edgelesssys/constellation.git
synced 2025-05-02 06:16:08 -04:00
Ignore unchecked error
This commit is contained in:
parent
0126d8a0c2
commit
114a51b29c
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue