Skip to content
This repository has been archived by the owner on Apr 2, 2024. It is now read-only.

Commit

Permalink
#17 Re-fix
Browse files Browse the repository at this point in the history
  • Loading branch information
marcionemec-daitan committed Feb 20, 2024
1 parent 9e01d95 commit 98a9c97
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ def testVault():


def testConnection():
import module.test_db_connection
from module.test_db_connection import test_db_connection
if dbParam != None:
dbConfig = {
"type": "ORACLE",
Expand All @@ -83,7 +83,7 @@ def testConnection():
"schema": "THE",
"test_query": "SELECT 1 FROM DUAL"
}
d = module.test_db_connection.do_test(dbConfig)
d = test_db_connection.do_test(dbConfig)
print(d)


Expand Down

0 comments on commit 98a9c97

Please sign in to comment.