summaryrefslogtreecommitdiffstats
path: root/tests/conftest.py
diff options
context:
space:
mode:
authorKarl-Aksel Puulmann <oxymaccy@gmail.com>2015-01-08 11:58:02 +0200
committerAmjith Ramanujam <amjith.r@gmail.com>2015-01-09 00:14:18 -0800
commitb7f9c00c21ab3bbcdfccd63a7fd9f844e363270f (patch)
treeccf4092f73f2a8a633c35565b72b496222a069fa /tests/conftest.py
parent8307a7e642dd58b0ea1633cf0cf2ab690449c592 (diff)
Fix issues pointed out in pull request comments.
Diffstat (limited to 'tests/conftest.py')
-rw-r--r--tests/conftest.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/conftest.py b/tests/conftest.py
index 2f45e2a5..a7dd8586 100644
--- a/tests/conftest.py
+++ b/tests/conftest.py
@@ -21,4 +21,5 @@ def cursor(connection):
@pytest.fixture
def executor(connection):
- return PGExecute(database='_test_db', user=POSTGRES_USER, host=POSTGRES_HOST)
+ return PGExecute(database='_test_db', user=POSTGRES_USER, host=POSTGRES_HOST,
+ password=None, port=None)