From ff4f970fa426606dc88d93a4c76a5506ba269258 Mon Sep 17 00:00:00 2001 From: Harmon Date: Fri, 7 Feb 2020 11:23:06 -0600 Subject: Remove now unused is_invoking_git variable in test --- git/test/test_repo.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'git/test/test_repo.py') diff --git a/git/test/test_repo.py b/git/test/test_repo.py index 0af68730..18b6f11e 100644 --- a/git/test/test_repo.py +++ b/git/test/test_repo.py @@ -496,10 +496,7 @@ class TestRepo(TestBase): """) @with_rw_repo('HEAD', bare=False) def test_untracked_files(self, rwrepo): - for run, (repo_add, is_invoking_git) in enumerate(( - (rwrepo.index.add, False), - (rwrepo.git.add, True), - )): + for run, repo_add in enumerate((rwrepo.index.add, rwrepo.git.add)): base = rwrepo.working_tree_dir files = (join_path_native(base, u"%i_test _myfile" % run), join_path_native(base, "%i_test_other_file" % run), -- cgit v1.2.1