From 736a83239f7ca9e614dc1e906f0e1f03675426a3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maiti=C3=BA=20=C3=93=20Ciar=C3=A1in?= Date: Thu, 8 Feb 2024 09:08:47 +0100 Subject: [PATCH] Add missing returned value --- test/e2e/adminapi_cluster_getlogs.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/e2e/adminapi_cluster_getlogs.go b/test/e2e/adminapi_cluster_getlogs.go index fdd722995bd..6524ab04aa2 100644 --- a/test/e2e/adminapi_cluster_getlogs.go +++ b/test/e2e/adminapi_cluster_getlogs.go @@ -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))