From 1e985b2eb3020999923353a774890d59786aae06 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Damian=20K=C4=99ska?= <372403+keskad@users.noreply.github.com> Date: Sat, 25 Nov 2023 21:28:01 +0100 Subject: [PATCH] fix: Test not passing on fresh k3d --- pkgs/core/e2e_provider_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/core/e2e_provider_test.go b/pkgs/core/e2e_provider_test.go index 299cb24..1b55358 100644 --- a/pkgs/core/e2e_provider_test.go +++ b/pkgs/core/e2e_provider_test.go @@ -9,7 +9,7 @@ import ( ) func TestFetchLogs(t *testing.T) { - assert.Nil(t, testpkg.Kubectl([]string{"delete", "-f", "../../test_data/test-run.yaml"})) + _ = testpkg.Kubectl([]string{"delete", "-f", "../../test_data/test-run.yaml"}) assert.Nil(t, testpkg.Kubectl([]string{"apply", "-f", "../../test_data/test-run.yaml"})) testpkg.WaitForPipelineFinishedByName("default", "test-run")