From b2ca19b82f719c50aeddc92aeafe061cf1391c2c Mon Sep 17 00:00:00 2001 From: taran Date: Mon, 16 Dec 2024 02:09:08 -0500 Subject: [PATCH 1/2] removed redeclared filepath --- tests/e2e/steps/steps_def.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/tests/e2e/steps/steps_def.go b/tests/e2e/steps/steps_def.go index e9dfe43f..6c684fde 100644 --- a/tests/e2e/steps/steps_def.go +++ b/tests/e2e/steps/steps_def.go @@ -26,9 +26,6 @@ import ( "encoding/json" "path/filepath" - - "path/filepath" - "github.com/dell/csm-operator/pkg/constants" "github.com/dell/csm-operator/pkg/modules" "github.com/dell/csm-operator/pkg/utils" From 2fd16bd62ac3d846bff539becf49f7a43da222e0 Mon Sep 17 00:00:00 2001 From: taran Date: Mon, 16 Dec 2024 03:40:31 -0500 Subject: [PATCH 2/2] formatting issues resolved --- tests/e2e/steps/steps_def.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/e2e/steps/steps_def.go b/tests/e2e/steps/steps_def.go index 6c684fde..2f5c12ce 100644 --- a/tests/e2e/steps/steps_def.go +++ b/tests/e2e/steps/steps_def.go @@ -25,7 +25,6 @@ import ( csmv1 "github.com/dell/csm-operator/api/v1" "encoding/json" - "path/filepath" "github.com/dell/csm-operator/pkg/constants" "github.com/dell/csm-operator/pkg/modules" "github.com/dell/csm-operator/pkg/utils" @@ -39,6 +38,7 @@ import ( "k8s.io/kubernetes/test/e2e/framework/kubectl" fpod "k8s.io/kubernetes/test/e2e/framework/pod" "k8s.io/utils/pointer" + "path/filepath" "sigs.k8s.io/controller-runtime/pkg/client" "sigs.k8s.io/yaml" )