diff options
author | Florian Apolloner <florian@apolloner.eu> | 2008-10-31 22:46:47 +0100 |
---|---|---|
committer | Michael Trier <mtrier@gmail.com> | 2008-12-15 12:09:45 -0500 |
commit | dc1fcf372878240e0a1af20641d361f14aea7252 (patch) | |
tree | cfb0a64a630f857aa86f8afdb6a88b10a9c70c6e /test/git/test_git.py | |
parent | b00f3689aa19938c10576580fbfc9243d9f3866c (diff) | |
download | gitpython-dc1fcf372878240e0a1af20641d361f14aea7252.tar.gz |
Get compatible with mock0.4 (to some extend ;)). Just that Michael
doesn't need to do the same boring replacing I did.
(cherry picked from commit 10c62aa69193a8bc7b46ca24c2ad1d5008489665)
Diffstat (limited to 'test/git/test_git.py')
-rw-r--r-- | test/git/test_git.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/git/test_git.py b/test/git/test_git.py index 4618ecf2..3a3dc564 100644 --- a/test/git/test_git.py +++ b/test/git/test_git.py @@ -13,7 +13,7 @@ class TestGit(object): base = os.path.join(os.path.dirname(__file__), "../..") self.git = Git(base) - @patch(Git, 'execute') + @patch_object(Git, 'execute') def test_call_process_calls_execute(self, git): git.return_value = '' self.git.version() @@ -51,7 +51,7 @@ class TestGit(object): output = self.git.execute(["cat", "/bin/bash"]) assert_true(len(output) > 4096) # at least 4k - @patch(Git, 'execute') + @patch_object(Git, 'execute') def test_it_ignores_false_kwargs(self, git): # this_should_not_be_ignored=False implies it *should* be ignored output = self.git.version(pass_this_kwarg=False) |