Commit 41c945f9 authored by Kirill Smelkov's avatar Kirill Smelkov

.

parent bdb56f28
...@@ -511,15 +511,9 @@ def test_restructure(): ...@@ -511,15 +511,9 @@ def test_restructure():
""" """
z = Z0() z = Z0()
R(z, 'T/T/B') R(z, 'T/T/B')
kind, keys, kids = crack_btree(z) t, = assertT(z, [], 'T')
assert (kind, keys) == (BTREE_NORMAL, []) b, = assertT(t, [], 'B')
assert len(kids) == 1 assertB(b)
assert isinstance(kids[0], XLOTree)
kind, keys, kids = crack_btree(kids[0])
assert (kind, keys) == (BTREE_NORMAL, [])
assert len(kids) == 1
assert isinstance(kids[0], LOBucket)
assert kids[0].keys() == []
""" """
# ø -> T/T-T/B-B (don't - see ^^^) # ø -> T/T-T/B-B (don't - see ^^^)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment