summaryrefslogtreecommitdiff
path: root/tests/conftest.py
diff options
context:
space:
mode:
authorMichaël Ball <michael.ball@gmail.com>2017-03-26 10:19:59 +0100
committerMichaël Ball <michael.ball@gmail.com>2017-06-04 07:37:53 +0100
commitd06f96388d754ed41876f7fccb63f84241d44963 (patch)
tree640a4f3eaf7e1f2b76a246a1977c27775d0b59a1 /tests/conftest.py
parentcaa1c3ccdf94ee20140b3964aab0ad3058e03699 (diff)
Works on python 2/pypy
Diffstat (limited to 'tests/conftest.py')
-rw-r--r--tests/conftest.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/conftest.py b/tests/conftest.py
index 0028475..90364ce 100644
--- a/tests/conftest.py
+++ b/tests/conftest.py
@@ -8,8 +8,8 @@ from db.db_manager import DbManager
@pytest.fixture(scope="module")
def database(request):
database = DbManager(
- db=os.path.join(os.path.dirname(os.path.realpath(__file__)),
- "test.db"))
+ os.path.join(os.path.dirname(os.path.realpath(__file__)),
+ "test.db"))
def fin():
database.close()
@@ -32,8 +32,8 @@ def app(request):
db = os.path.join(os.path.dirname(os.path.realpath(__file__)),
"testapp.db")
library_db = DbManager(
- db=os.path.join(os.path.dirname(os.path.realpath(__file__)),
- "test.db"))
+ os.path.join(os.path.dirname(os.path.realpath(__file__)),
+ "test.db"))
def fin():
library_db.close()