diff options
author | Michael Trier <mtrier@gmail.com> | 2008-07-28 00:39:04 -0400 |
---|---|---|
committer | Michael Trier <mtrier@gmail.com> | 2008-07-28 00:39:04 -0400 |
commit | d4e56f627f94d93c49db40ae5944f880341f4203 (patch) | |
tree | 4bda206c2bb7820d61d6b06d6d081fddc71c5459 /test/git/test_git.py | |
parent | 14cef2bb3e0de02f306fa37c268d6c276326c002 (diff) | |
download | gitpython-d4e56f627f94d93c49db40ae5944f880341f4203.tar.gz |
added Jelmer to the AUTHORS and removed an unnecessary underline in tests.
Diffstat (limited to 'test/git/test_git.py')
-rw-r--r-- | test/git/test_git.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/git/test_git.py b/test/git/test_git.py index 5a99dc6e..d649bb1b 100644 --- a/test/git/test_git.py +++ b/test/git/test_git.py @@ -14,7 +14,7 @@ class TestGit(object): self.git = Git(base) @patch(Git, 'execute') - def test__call_process_calls_execute(self, git): + def test_call_process_calls_execute(self, git): git.return_value = '' self.git.version() assert_true(git.called) |