aboutsummaryrefslogtreecommitdiffstats
path: root/tests/conftest.py
diff options
context:
space:
mode:
authorGravatar Jon Bernard <jbernard@tuxion.com> 2016-07-18 15:36:41 -0400
committerGravatar Jon Bernard <jbernard@tuxion.com> 2016-07-18 15:36:41 -0400
commitaf991f612a54d347deb5449aec273012c2c059df (patch)
tree46bfed4f4892c8b8dca82f62e09f4c1bb1e29567 /tests/conftest.py
parente09398c6ef5af049a28b88690911343ba5238e67 (diff)
downloaddotfiles-af991f612a54d347deb5449aec273012c2c059df.tar.gz
dotfiles-af991f612a54d347deb5449aec273012c2c059df.tar.bz2
dotfiles-af991f612a54d347deb5449aec273012c2c059df.zip
Reverse leading dot logic
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 f5beb21..9e1d16a 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, home)
+ return Repository(path, homedir=home)
@pytest.fixture(scope='function')