diff --git a/test/test_git.py b/test/test_git.py index e7d236deb..c5d871f08 100644 --- a/test/test_git.py +++ b/test/test_git.py @@ -169,7 +169,7 @@ def test_refresh(self): self.assertRaises(GitCommandNotFound, refresh, "yada") # test a good path refresh - which_cmd = "where" if is_win else "which" + which_cmd = "where" if is_win else "command -v" path = os.popen("{0} git".format(which_cmd)).read().strip().split("\n")[0] refresh(path)