Skip to content

Commit bba2070

Browse files
Fix: e2e test cases
1 parent 14d1ec5 commit bba2070

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ test/cluster/down: bin/k3d
112112

113113
test/e2e/%: PKG=$*
114114
test/e2e/%: bin/cockroach bin/kubectl bin/helm build/self-signer test/cluster ## run e2e tests for package (e.g. install or rotate)
115-
@PATH="$(PWD)/bin:${PATH}" go test -timeout 30m -v ./tests/e2e/... || EXIT_CODE=$$?; \
115+
@PATH="$(PWD)/bin:${PATH}" go test -timeout 30m -v ./tests/e2e/${PKG}/... || EXIT_CODE=$$?; \
116116
$(MAKE) test/cluster/down; \
117117
exit $${EXIT_CODE:-0}
118118

tests/e2e/install/cockroachdb_helm_e2e_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ func TestCockroachDbHelmInstall(t *testing.T) {
104104
testutil.RequireDatabaseToFunction(t, crdbCluster, testDBName)
105105
}
106106

107-
func TestCockroachDbHelmInstallWithCAProvided(t *testing.T) {
107+
func TestCockroachDbHelmWithCAProvided(t *testing.T) {
108108
namespaceName := "cockroach" + strings.ToLower(random.UniqueId())
109109
kubectlOptions := k8s.NewKubectlOptions("", "", namespaceName)
110110

0 commit comments

Comments
 (0)