diff options
author | Sebastian Thiel <byronimo@gmail.com> | 2015-01-08 10:14:15 +0100 |
---|---|---|
committer | Sebastian Thiel <byronimo@gmail.com> | 2015-01-08 10:14:15 +0100 |
commit | 27b4efed7a435153f18598796473b3fba06c513d (patch) | |
tree | 08d2917a3632aca30813cd90c0f6d8b8897e5634 /git/test/test_diff.py | |
parent | f7b7eb6245e7d7c4535975268a9be936e2c59dc8 (diff) | |
download | gitpython-27b4efed7a435153f18598796473b3fba06c513d.tar.gz |
Added assertion to better detect diff issues.
Helps fixing #35
Also, the production status was changed to 'stable', which should
have been done much earlier.
Diffstat (limited to 'git/test/test_diff.py')
-rw-r--r-- | git/test/test_diff.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/git/test/test_diff.py b/git/test/test_diff.py index 3453f6a8..c5183089 100644 --- a/git/test/test_diff.py +++ b/git/test/test_diff.py @@ -80,7 +80,7 @@ class TestDiff(TestBase): for other in (None, commit.Index, commit.parents[0]): for paths in (None, "CHANGES", ("CHANGES", "lib")): for create_patch in range(2): - diff_index = diff_item.diff(other, paths, create_patch) + diff_index = diff_item.diff(other=other, paths=paths, create_patch=create_patch) assert isinstance(diff_index, DiffIndex) if diff_index: |