summaryrefslogtreecommitdiff
path: root/git/test/test_git.py
diff options
context:
space:
mode:
authorVille Skyttä <ville.skytta@iki.fi>2017-03-09 11:35:14 +0200
committerSebastian Thiel <byronimo@gmail.com>2017-03-09 11:03:29 +0100
commit8dffba51b4fd88f7d26a43cf6d1fbbe3cdb9f44d (patch)
tree09b460ad1445ca89c11206235665dfa2b3b4566c /git/test/test_git.py
parentc23ae3a48bb37ae7ebd6aacc8539fee090ca34bd (diff)
downloadgitpython-8dffba51b4fd88f7d26a43cf6d1fbbe3cdb9f44d.tar.gz
Spelling fixes
Diffstat (limited to 'git/test/test_git.py')
-rw-r--r--git/test/test_git.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/git/test/test_git.py b/git/test/test_git.py
index f97f8130..3ab82b02 100644
--- a/git/test/test_git.py
+++ b/git/test/test_git.py
@@ -131,7 +131,7 @@ class TestGit(TestBase):
g.stdin.flush()
self.assertEqual(g.stdout.readline(), obj_info)
- # same can be achived using the respective command functions
+ # same can be achieved using the respective command functions
hexsha, typename, size = self.git.get_object_header(hexsha)
hexsha, typename_two, size_two, data = self.git.get_object_data(hexsha) # @UnusedVariable
self.assertEqual(typename, typename_two)
@@ -189,7 +189,7 @@ class TestGit(TestBase):
self.failUnlessRaises(ValueError, self.git.remote, 'add', insert_kwargs_after='foo')
def test_env_vars_passed_to_git(self):
- editor = 'non_existant_editor'
+ editor = 'non_existent_editor'
with mock.patch.dict('os.environ', {'GIT_EDITOR': editor}): # @UndefinedVariable
self.assertEqual(self.git.var("GIT_EDITOR"), editor)