summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Trier <mtrier@gmail.com>2008-07-28 00:39:04 -0400
committerMichael Trier <mtrier@gmail.com>2008-07-28 00:39:04 -0400
commitd4e56f627f94d93c49db40ae5944f880341f4203 (patch)
tree4bda206c2bb7820d61d6b06d6d081fddc71c5459
parent14cef2bb3e0de02f306fa37c268d6c276326c002 (diff)
downloadgitpython-d4e56f627f94d93c49db40ae5944f880341f4203.tar.gz
added Jelmer to the AUTHORS and removed an unnecessary underline in tests.
-rw-r--r--AUTHORS1
-rw-r--r--test/git/test_git.py2
2 files changed, 2 insertions, 1 deletions
diff --git a/AUTHORS b/AUTHORS
index bd1d4425..114959f8 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -2,3 +2,4 @@ Michael Trier <mtrier _at_ gmail.com>
Alan Briolat
Florian Apolloner <florian _at_ apolloner.eu>
David Aguilar <davvid _at_ gmail.com>
+Jelmer Vernooij <jelmer _at_ samba.org>
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)