diff options
author | Sebastian Thiel <byronimo@gmail.com> | 2009-10-13 21:26:19 +0200 |
---|---|---|
committer | Sebastian Thiel <byronimo@gmail.com> | 2009-10-13 21:26:19 +0200 |
commit | 6acec357c7609fdd2cb0f5fdb1d2756726c7fe98 (patch) | |
tree | c7cb258ba85691082b7f7e95fa7f187e1f37405a /test/git/test_commit.py | |
parent | f4fa1cb3c3e84cad8b74edb28531d2e27508be26 (diff) | |
download | gitpython-6acec357c7609fdd2cb0f5fdb1d2756726c7fe98.tar.gz |
renamed find_all to list_all, changed commit to use iterable interface in preparation for command changes
Diffstat (limited to 'test/git/test_commit.py')
-rw-r--r-- | test/git/test_commit.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/git/test_commit.py b/test/git/test_commit.py index fa49821d..0fb4bceb 100644 --- a/test/git/test_commit.py +++ b/test/git/test_commit.py @@ -216,7 +216,7 @@ class TestCommit(object): bisect_all=True) assert_true(git.called) - commits = Commit._list_from_string(self.repo, revs) + commits = Commit._iter_from_stream(self.repo, iter(revs.splitlines(False))) expected_ids = ( 'cf37099ea8d1d8c7fbf9b6d12d7ec0249d3acb8b', '33ebe7acec14b25c5f84f35a664803fcab2f7781', |