From b38723ece2c9e3b57233199d40934ff9b665dcef Mon Sep 17 00:00:00 2001 From: Joshua Casey Date: Thu, 2 Nov 2023 15:31:50 -0500 Subject: [PATCH] Integration test fixes --- test/integration/pod_shutdown_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/integration/pod_shutdown_test.go b/test/integration/pod_shutdown_test.go index 91101c554..335312f7c 100644 --- a/test/integration/pod_shutdown_test.go +++ b/test/integration/pod_shutdown_test.go @@ -112,7 +112,7 @@ func testShutdownAllPodsOfApp(t *testing.T, env *testlib.TestEnv, namespace stri // process was performed successfully and without being blocked. require.Containsf(t, pl.logsBuf.String(), `"[graceful-termination] shutdown event","name":"ShutdownInitiated"`, "did not find expected message in pod log for pod %q", pl.pod.Name) - require.Containsf(t, pl.logsBuf.String(), `"[graceful-termination] apiserver is exiting\n"`, + require.Containsf(t, pl.logsBuf.String(), `[graceful-termination] apiserver is exiting`, "did not find expected message in pod log for pod %q", pl.pod.Name) t.Logf("found expected graceful-termination messages in the logs of pod %q", pl.pod.Name) }