summaryrefslogtreecommitdiffstats
path: root/tests/features/db_utils.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/features/db_utils.py')
-rw-r--r--tests/features/db_utils.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/features/db_utils.py b/tests/features/db_utils.py
index 4eba6063..7f8a2e7d 100644
--- a/tests/features/db_utils.py
+++ b/tests/features/db_utils.py
@@ -48,7 +48,7 @@ def create_cn(hostname, password, username, dbname, port):
host=hostname, user=username, database=dbname, password=password, port=port
)
- print ("Created connection: {0}.".format(cn.dsn))
+ print("Created connection: {0}.".format(cn.dsn))
return cn
@@ -79,4 +79,4 @@ def close_cn(cn=None):
"""
if cn:
cn.close()
- print ("Closed connection: {0}.".format(cn.dsn))
+ print("Closed connection: {0}.".format(cn.dsn))