summaryrefslogtreecommitdiffstats
path: root/tests/features
diff options
context:
space:
mode:
authorIrina Truong <i.chernyavska@gmail.com>2017-07-25 15:09:39 -0700
committerIrina Truong <i.chernyavska@gmail.com>2017-07-25 15:09:39 -0700
commit8547694ec4a5bddf392ac5723f2a7b3ebd1eb539 (patch)
tree2aff87b3b5451b0499842ee0f100472ee0ed659f /tests/features
parent1624cf608dee5aef5198077c3574743d9861cf33 (diff)
PEP8.
Diffstat (limited to 'tests/features')
-rw-r--r--tests/features/db_utils.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/features/db_utils.py b/tests/features/db_utils.py
index 9003e460..e0b2035d 100644
--- a/tests/features/db_utils.py
+++ b/tests/features/db_utils.py
@@ -7,14 +7,15 @@ from psycopg2.extensions import AsIs
def create_db(hostname='localhost', username=None, password=None, dbname=None, port=None):
- """
- Create test database.
+ """Create test database.
+
:param hostname: string
:param username: string
:param password: string
:param dbname: string
:param port: int
:return:
+
"""
cn = create_cn(hostname, password, username, 'postgres', port)