aboutsummaryrefslogtreecommitdiffstats
path: root/tests/conftest.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/conftest.py')
-rw-r--r--tests/conftest.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/conftest.py b/tests/conftest.py
index f5beb21..41f8995 100644
--- a/tests/conftest.py
+++ b/tests/conftest.py
@@ -6,8 +6,8 @@ from dotfiles.repository import Repository
@pytest.fixture(scope='function', params=['', 'home'])
def repo(request, tmpdir):
- path = tmpdir.ensure_dir('repo')
- home = tmpdir.ensure_dir(request.param)
+ path = str(tmpdir.ensure_dir('repo'))
+ home = str(tmpdir.ensure_dir(request.param))
return Repository(path, home)