aboutsummaryrefslogtreecommitdiffstats
path: root/tests/conftest.py
diff options
context:
space:
mode:
authorGravatar Jon Bernard <jbernard@jbernard.io> 2018-10-11 11:42:53 -0400
committerGravatar Jon Bernard <jbernard@jbernard.io> 2019-03-05 10:16:06 -0500
commit9665f21abfe23cae78ee9f437da9a46dba19f22e (patch)
treeaf004423bb3f3ad36800c9dfc62470d532d9308b /tests/conftest.py
parentb3e7538dc223ce06e999c771a2ff6f1052370677 (diff)
downloaddotfiles-9665f21abfe23cae78ee9f437da9a46dba19f22e.tar.gz
dotfiles-9665f21abfe23cae78ee9f437da9a46dba19f22e.tar.bz2
dotfiles-9665f21abfe23cae78ee9f437da9a46dba19f22e.zip
Fix cli tests with pathlib
Diffstat (limited to 'tests/conftest.py')
-rw-r--r--tests/conftest.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/conftest.py b/tests/conftest.py
index 9e1d16a..f5beb21 100644
--- a/tests/conftest.py
+++ b/tests/conftest.py
@@ -8,7 +8,7 @@ from dotfiles.repository import Repository
def repo(request, tmpdir):
path = tmpdir.ensure_dir('repo')
home = tmpdir.ensure_dir(request.param)
- return Repository(path, homedir=home)
+ return Repository(path, home)
@pytest.fixture(scope='function')