From ab4411e7f6829152f89213be6bc7d92ea0211299 Mon Sep 17 00:00:00 2001 From: astoycos Date: Thu, 31 Aug 2023 14:31:46 -0400 Subject: [PATCH] ignore already deleted resources in tcp int test Signed-off-by: astoycos --- test/integration/tcproute_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/integration/tcproute_test.go b/test/integration/tcproute_test.go index 55ba8959..4b11382f 100644 --- a/test/integration/tcproute_test.go +++ b/test/integration/tcproute_test.go @@ -38,7 +38,7 @@ func TestTCPRouteBasics(t *testing.T) { require.NoError(t, clusters.KustomizeDeployForCluster(ctx, env.Cluster(), tcprouteSampleKustomize)) addCleanup(tcpRouteBasicsCleanupKey, func(ctx context.Context) error { cleanupLog("cleaning up config/samples/tcproute kustomize") - return clusters.KustomizeDeleteForCluster(ctx, env.Cluster(), tcprouteSampleKustomize) + return clusters.KustomizeDeleteForCluster(ctx, env.Cluster(), tcprouteSampleKustomize, "--ignore-not-found=true") }) t.Log("waiting for Gateway to have an address")