diff options
author | Sebastian Thiel <byronimo@gmail.com> | 2009-10-22 13:40:56 +0200 |
---|---|---|
committer | Sebastian Thiel <byronimo@gmail.com> | 2009-10-22 13:40:56 +0200 |
commit | 1f2b19de3301e76ab3a6187a49c9c93ff78bafbd (patch) | |
tree | 3a9f13c4ae6b99de30012452e00e59ced66ab925 | |
parent | 30d822a468dc909aac5c83d078a59bfc85fc27aa (diff) | |
download | gitpython-1f2b19de3301e76ab3a6187a49c9c93ff78bafbd.tar.gz |
Removed index test marker for custom commits as this boils down to a good way to add files to the index/remove them and make commits which are possibly customized with custom parents
-rw-r--r-- | test/git/test_index.py | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/test/git/test_index.py b/test/git/test_index.py index c8f6f4e3..4c17f5e5 100644 --- a/test/git/test_index.py +++ b/test/git/test_index.py @@ -104,7 +104,5 @@ class TestTree(TestCase): num_blobs += 1 # END for each blob assert num_blobs == len(three_way_index.entries) - - - def test_custom_commit(self): - self.fail("Custom commit:write tree, make commit with custom parents") + + |