summaryrefslogtreecommitdiff
path: root/test/test_tree.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/test_tree.py')
-rw-r--r--test/test_tree.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/test/test_tree.py b/test/test_tree.py
index 97067fb2..22c9c7d7 100644
--- a/test/test_tree.py
+++ b/test/test_tree.py
@@ -89,9 +89,7 @@ class TestTree(TestBase):
# trees and blobs
assert len(set(trees) | set(root.trees)) == len(trees)
- assert len({b for b in root if isinstance(b, Blob)} | set(root.blobs)) == len(
- root.blobs
- )
+ assert len({b for b in root if isinstance(b, Blob)} | set(root.blobs)) == len(root.blobs)
subitem = trees[0][0]
assert "/" in subitem.path
assert subitem.name == osp.basename(subitem.path)