Skip to content

Commit

Permalink
ignore already deleted resources in tcp int test
Browse files Browse the repository at this point in the history
Signed-off-by: astoycos <[email protected]>
  • Loading branch information
astoycos authored and shaneutt committed Sep 1, 2023
1 parent 795f92e commit ab4411e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/integration/tcproute_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down

0 comments on commit ab4411e

Please sign in to comment.