summaryrefslogtreecommitdiff
path: root/test/git/test_base.py
diff options
context:
space:
mode:
authorSebastian Thiel <byronimo@gmail.com>2010-06-29 20:16:37 +0200
committerSebastian Thiel <byronimo@gmail.com>2010-06-29 20:16:37 +0200
commit18be0972304dc7f1a2a509595de7da689bddbefa (patch)
tree9f23a910a68120e64419ee8c03f37ed0790ab621 /test/git/test_base.py
parent77cd6659b64cb1950a82e6a3cccdda94f15ae739 (diff)
downloadgitpython-18be0972304dc7f1a2a509595de7da689bddbefa.tar.gz
Removed blob.data property as there is no real reason for an exception to the rule of trying not to cache possibly heavy data. The data_stream method should be used instead
Diffstat (limited to 'test/git/test_base.py')
-rw-r--r--test/git/test_base.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/test/git/test_base.py b/test/git/test_base.py
index 938647d0..db13feae 100644
--- a/test/git/test_base.py
+++ b/test/git/test_base.py
@@ -42,8 +42,6 @@ class TestBase(TestBase):
assert item.hexsha == hexsha
assert item.type == typename
assert item.size
- if isinstance(item, Blob):
- assert item.data
assert item == item
assert not item != item
assert str(item) == item.hexsha