| commit | f35bfed79e837c5f11cd8e7abfdb8f188dd9b3bb | [log] [tgz] |
|---|---|---|
| author | Max Rozentsveyg <maxr@outlook.com> | Wed May 20 12:07:45 2020 -0400 |
| committer | Max Rozentsveyg <maxr@outlook.com> | Wed May 20 12:08:42 2020 -0400 |
| tree | dda3caf3ad3baca6d79049f381125df759994a2a | |
| parent | e37b2795ff01adeb76edd6fe808f8540b692160c [diff] [blame] |
Don't use LocalPath.strpath
diff --git a/tests/conftest.py b/tests/conftest.py index f98ae34..f92cfc1 100644 --- a/tests/conftest.py +++ b/tests/conftest.py
@@ -6,5 +6,5 @@ @pytest.fixture def temp_git_dir(tmpdir): git_dir = tmpdir.join('gits') - cmd_output('git', 'init', '--', git_dir.strpath) + cmd_output('git', 'init', '--', str(git_dir)) yield git_dir