From 14cef2bb3e0de02f306fa37c268d6c276326c002 Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Sat, 26 Jul 2008 14:46:05 +0200 Subject: Avoid stripping newlines in blob data. (cherry picked from commit ccca12ee26e40fb4c4df2d77154ed496144569b9) --- test/git/test_repo.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/git/test_repo.py') 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') -- cgit v1.2.3