From 9665f21abfe23cae78ee9f437da9a46dba19f22e Mon Sep 17 00:00:00 2001 From: Jon Bernard Date: Thu, 11 Oct 2018 11:42:53 -0400 Subject: Fix cli tests with pathlib --- tests/conftest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/conftest.py') 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') -- cgit v1.2.3