diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2008-07-26 14:46:05 +0200 |
---|---|---|
committer | Michael Trier <mtrier@gmail.com> | 2008-07-28 00:33:02 -0400 |
commit | 14cef2bb3e0de02f306fa37c268d6c276326c002 (patch) | |
tree | e91fb271de73f006a160fcaea928cd266efb07db /test/git/test_repo.py | |
parent | d3ce120c9acc7d9d4ce86aa1f07b027d1c45a9a1 (diff) | |
download | gitpython-14cef2bb3e0de02f306fa37c268d6c276326c002.tar.gz |
Avoid stripping newlines in blob data.
(cherry picked from commit ccca12ee26e40fb4c4df2d77154ed496144569b9)
Diffstat (limited to 'test/git/test_repo.py')
-rw-r--r-- | test/git/test_repo.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/git/test_repo.py b/test/git/test_repo.py index 21b43a88..ea3032c1 100644 --- a/test/git/test_repo.py +++ b/test/git/test_repo.py @@ -107,7 +107,7 @@ class TestRepo(object): assert_equal("Hello world", blob.data) assert_true(git.called) - assert_equal(git.call_args, (('cat_file', 'abc'), {'p': True})) + assert_equal(git.call_args, (('cat_file', 'abc'), {'p': True, 'with_raw_output': True})) @patch(Repo, '__init__') @patch(Git, '_call_process') |