diff options
-rw-r--r-- | AUTHORS | 1 | ||||
-rw-r--r-- | test/git/test_git.py | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -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) |