Skip to content

Commit 0c86245

Browse files
authored
Fix test command syntax in Makefile
1 parent 325663a commit 0c86245

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ test: manifests generate fmt vet setup-envtest ## Run tests.
120120

121121
.PHONY: test-e2e ## Run e2e tests.
122122
test-e2e:
123-
go test./test/e2e/ -v -ginkgo.v -ginkgo.timeout=1h -ginkgo.label-filter="!bundle"
123+
go test ./test/e2e/ -v -ginkgo.v -ginkgo.timeout=1h -ginkgo.label-filter="!bundle"
124124

125125
.PHONY: test-e2e-bundle ## Run bundle e2e tests.
126126
test-e2e-bundle: operator-sdk docker-build docker-push bundle bundle-build bundle-push install-olm-in-cluster
@@ -389,4 +389,4 @@ catalog-push: ## Push a catalog image.
389389

390390
.PHONY: mocksgen
391391
gen-mocks: ${MOCKERY}
392-
${MOCKERY}
392+
${MOCKERY}

0 commit comments

Comments
 (0)