From 454576254b873b7ebc45bb30846e5831dc2d8817 Mon Sep 17 00:00:00 2001 From: Yobmod Date: Mon, 19 Jul 2021 16:59:30 +0100 Subject: rmv python 3.5 checks from tests --- test/test_commit.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/test_commit.py') 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') -- cgit v1.2.1 From 600df043e76924d43a4f9f88f4e3241740f34c77 Mon Sep 17 00:00:00 2001 From: Yobmod Date: Mon, 19 Jul 2021 20:26:53 +0100 Subject: Rmv old py2.7 __future__ imports --- test/test_commit.py | 2 -- 1 file changed, 2 deletions(-) (limited to 'test/test_commit.py') diff --git a/test/test_commit.py b/test/test_commit.py index 670068e5..67dc7d73 100644 --- a/test/test_commit.py +++ b/test/test_commit.py @@ -4,8 +4,6 @@ # # This module is part of GitPython and is released under # the BSD License: http://www.opensource.org/licenses/bsd-license.php -from __future__ import print_function - from datetime import datetime from io import BytesIO import re -- cgit v1.2.1