Skip to content

Commit

Permalink
Add missing returned value
Browse files Browse the repository at this point in the history
  • Loading branch information
mociarain committed Feb 8, 2024
1 parent 57fb28a commit 736a832
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/e2e/adminapi_cluster_getlogs.go
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ func testGetPodLogsOK(ctx context.Context, containerName, podName, namespace str

By("waiting for the pod to successfully terminate")
Eventually(func(g Gomega, ctx context.Context) {
pod = GetK8sObjectWithRetry(
pod, _ = GetK8sObjectWithRetry(
ctx, clients.Kubernetes.CoreV1().Pods(namespace).Get, podName, metav1.GetOptions{},
)
g.Expect(pod.Status.Phase).To(Equal(corev1.PodSucceeded))
Expand Down

0 comments on commit 736a832

Please sign in to comment.