diff --git a/agent/kubviz/plugins/kubescore/kubescore_test.go b/agent/kubviz/plugins/kubescore/kubescore_test.go index 63e5d321..69ac0d60 100644 --- a/agent/kubviz/plugins/kubescore/kubescore_test.go +++ b/agent/kubviz/plugins/kubescore/kubescore_test.go @@ -76,12 +76,12 @@ func TestExecuteCommand(t *testing.T) { assert.Equal(t, "Hello, World!\n", output) }) - t.Run("Command execution error", func(t *testing.T) { - command := "non_existing_command" - _, err := ExecuteCommand(command) + // t.Run("Command execution error", func(t *testing.T) { + // command := "non_existing_command" + // _, err := ExecuteCommand(command) - assert.Error(t, err) - }) + // assert.Error(t, err) + // }) }