diff options
author | Sebastian Thiel <sebastian.thiel@icloud.com> | 2022-09-14 08:25:04 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-14 08:25:04 +0800 |
commit | b27c41aac3cbc95ad15823058228b8d2461b8e7c (patch) | |
tree | f3bbda152d06262a2caeed49ce6797f4d05acc7f /test/test_diff.py | |
parent | bec61576ae75803bc4e60d8de7a629c194313d1c (diff) | |
parent | db392aeeea6e34c3aaa3a9961941a43053255ff0 (diff) | |
download | gitpython-b27c41aac3cbc95ad15823058228b8d2461b8e7c.tar.gz |
Merge pull request #1491 from langfield/main
Fix bug where colons in paths raise a `ValueError` on `diff()` calls.
Diffstat (limited to 'test/test_diff.py')
-rw-r--r-- | test/test_diff.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/test/test_diff.py b/test/test_diff.py index 3e1c5ddc..dcf10018 100644 --- a/test/test_diff.py +++ b/test/test_diff.py @@ -236,7 +236,6 @@ class TestDiff(TestBase): res[0].b_path, ) - @unittest.skip("This currently fails and would need someone to improve diff parsing") def test_diff_file_with_colon(self): output = fixture("diff_file_with_colon") res = [] |