From dd6af7e71264c9efdf7d63693b839c70e3f6992d Mon Sep 17 00:00:00 2001
From: TannerGabriel <gabrieltanner.code@gmail.com>
Date: Wed, 6 Jul 2022 09:37:54 +0200
Subject: [PATCH] Remove clientset check from integration test

Signed-off-by: TannerGabriel <gabrieltanner.code@gmail.com>
---
 test/e2e/compatibility_test.go | 7 -------
 1 file changed, 7 deletions(-)

diff --git a/test/e2e/compatibility_test.go b/test/e2e/compatibility_test.go
index e64473f..baa11bb 100644
--- a/test/e2e/compatibility_test.go
+++ b/test/e2e/compatibility_test.go
@@ -2,8 +2,6 @@ package e2e
 
 import (
 	"code.gitea.io/sdk/gitea"
-	"github.com/keptn/go-utils/pkg/common/kubeutils"
-	"github.com/stretchr/testify/assert"
 	"github.com/stretchr/testify/require"
 	"keptn-sandbox/keptn-gitea-provisioner/pkg/provisioner"
 	"net/http"
@@ -30,11 +28,6 @@ func Test_CreateAndDeleteProject(t *testing.T) {
 		t.Skip("Skipping Test_ActionTriggered, not allowed by environment")
 	}
 
-	// Just test if we can connect to the cluster
-	clientset, err := kubeutils.GetClientSet(false)
-	require.NoError(t, err)
-	assert.NotNil(t, clientset)
-
 	// Create a new Keptn api for the use of the E2E test
 	keptnAPI := NewKeptAPI(readKeptnConnectionDetailsFromEnv())