summaryrefslogtreecommitdiff
path: root/test/test_git.py
diff options
context:
space:
mode:
authorluz paz <luzpaz@pm.me>2022-05-07 15:59:10 -0400
committerluz paz <luzpaz@pm.me>2022-05-07 15:59:10 -0400
commitdde3a8bd9229ff25ec8bc03c35d937f43233f48e (patch)
treee4db57c467db566901d53881012f1ccfe3ca9d4a /test/test_git.py
parentb3166ece31bfb29e89f6ed4bb9214bf1c03791df (diff)
downloadgitpython-dde3a8bd9229ff25ec8bc03c35d937f43233f48e.tar.gz
Fix various typos
Found via `codespell -q 3 -S ./git/ext/gitdb,./test/fixtures/reflog_master,./test/fixtures/diff_mode_only,./test/fixtures/reflog_HEAD`
Diffstat (limited to 'test/test_git.py')
-rw-r--r--test/test_git.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_git.py b/test/test_git.py
index 7f52d650..10e21487 100644
--- a/test/test_git.py
+++ b/test/test_git.py
@@ -159,7 +159,7 @@ class TestGit(TestBase):
prev_cmd = self.git.GIT_PYTHON_GIT_EXECUTABLE
exc = GitCommandNotFound
try:
- # set it to something that doens't exist, assure it raises
+ # set it to something that doesn't exist, assure it raises
type(self.git).GIT_PYTHON_GIT_EXECUTABLE = osp.join(
"some", "path", "which", "doesn't", "exist", "gitbinary")
self.assertRaises(exc, self.git.version)