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

Commit

Permalink
#17 Reformat fix
Browse files Browse the repository at this point in the history
  • Loading branch information
marcionemec-daitan committed Feb 20, 2024
1 parent 98a9c97 commit d2f1bf7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/module/test_db_connection.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ class test_db_connection:
""" Class used to test database connections. """
def do_test(database_config):
""" Test Connection """
connection_string = format_connection_string(database_config)
connection_string = test_db_connection.format_connection_string(database_config)
engine = create_engine(connection_string)
conn = engine.connect().execution_options(autocommit=False)
result = conn.execute(database_config["test_query"])
Expand Down

0 comments on commit d2f1bf7

Please sign in to comment.