summaryrefslogtreecommitdiff
path: root/test/git/test_head.py
diff options
context:
space:
mode:
authorMichael Trier <mtrier@gmail.com>2008-07-17 17:22:01 -0400
committerMichael Trier <mtrier@gmail.com>2008-07-17 17:22:01 -0400
commitc04c60f12d3684ecf961509d1b8db895e6f9aac0 (patch)
tree464108d7ba000759bb0b75523cde6d0125d1d6d8 /test/git/test_head.py
parent564db4f20bd7189a50a12d612d56ed6391081e83 (diff)
downloadgitpython-c04c60f12d3684ecf961509d1b8db895e6f9aac0.tar.gz
Removed method_missing since it was only used in one place.
Diffstat (limited to 'test/git/test_head.py')
-rw-r--r--test/git/test_head.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/git/test_head.py b/test/git/test_head.py
index 6d32b2d3..d3af3d6b 100644
--- a/test/git/test_head.py
+++ b/test/git/test_head.py
@@ -11,7 +11,7 @@ class TestHead(object):
def setup(self):
self.repo = Repo(GIT_REPO)
- @patch(Git, 'method_missing')
+ @patch(Git, '_call_process')
def test_repr(self, git):
git.return_value = fixture('for_each_ref')