From 233abcace9805cc58dbb4760259a43c4b1abad7b Mon Sep 17 00:00:00 2001 From: Alexander Dejanovski Date: Wed, 5 Jun 2024 17:47:26 +0200 Subject: [PATCH] Remove the dse and hcd fields from e2e opts --- test/e2e/suite_test.go | 6 ------ 1 file changed, 6 deletions(-) diff --git a/test/e2e/suite_test.go b/test/e2e/suite_test.go index 406cd75bd..7ead381c4 100644 --- a/test/e2e/suite_test.go +++ b/test/e2e/suite_test.go @@ -450,14 +450,8 @@ type e2eTestOpts struct { // an upgrade test. initialVersion *string - // dse is used to specify if the e2e tests will run against DSE or Cassandra - dse bool - // installMinio is used to specify if the e2e tests will require to install Minio before creating the k8c object. installMinio bool - - // hcd is used to specify if the e2e tests will run against HCD - hcd bool } type e2eTestFunc func(t *testing.T, ctx context.Context, namespace string, f *framework.E2eFramework)