diff options
author | Yobmod <yobmod@gmail.com> | 2021-07-19 16:59:30 +0100 |
---|---|---|
committer | Yobmod <yobmod@gmail.com> | 2021-07-19 16:59:30 +0100 |
commit | 454576254b873b7ebc45bb30846e5831dc2d8817 (patch) | |
tree | 853ad35953091faf2b0380793166fc420f1de102 /test/test_commit.py | |
parent | 6609ef7c3b5bb840dba8d0a5362e67746761a437 (diff) | |
download | gitpython-454576254b873b7ebc45bb30846e5831dc2d8817.tar.gz |
rmv python 3.5 checks from tests
Diffstat (limited to 'test/test_commit.py')
-rw-r--r-- | test/test_commit.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_commit.py b/test/test_commit.py index 34b91ac7..670068e5 100644 --- a/test/test_commit.py +++ b/test/test_commit.py @@ -265,7 +265,7 @@ class TestCommit(TestCommitSerialization): @with_rw_directory def test_ambiguous_arg_iteration(self, rw_dir): rw_repo = Repo.init(osp.join(rw_dir, 'test_ambiguous_arg')) - path = osp.join(rw_repo.working_tree_dir, 'master') + path = osp.join(str(rw_repo.working_tree_dir), 'master') touch(path) rw_repo.index.add([path]) rw_repo.index.commit('initial commit') |