From 238e60ff5bd7ce8f15fc9e4f7dbe096a5f5c7622 Mon Sep 17 00:00:00 2001 From: Lunny Xiao Date: Fri, 5 Apr 2024 11:12:00 +0800 Subject: [PATCH] Fix makefile --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 8651f058..5138fd89 100644 --- a/Makefile +++ b/Makefile @@ -291,7 +291,7 @@ test-oracle: test-goora .PNONY: test-goora test-goora: go-check $(GO) test $(INTEGRATION_PACKAGES) -v -race -db=goora -schema='$(TEST_ORACLE_SCHEMA)' -cache=$(TEST_CACHE_ENABLE) \ - -conn_str="$(TEST_ORACLE_USERNAME):$(TEST_ORACLE_PASSWORD)@$(TEST_ORACLE_HOST)/$(TEST_ORACLE_DBNAME)" \ + -conn_str="oracle://$(TEST_ORACLE_USERNAME):$(TEST_ORACLE_PASSWORD)@$(TEST_ORACLE_HOST)/$(TEST_ORACLE_DBNAME)" \ -coverprofile=oracle.$(TEST_CACHE_ENABLE).coverage.out -covermode=atomic .PHONY: test-oci8\#%