Commit 8f497094 authored by Kirill Smelkov's avatar Kirill Smelkov

.

parent 2623b3e6
......@@ -393,14 +393,6 @@ def test_wcfs():
# >>> commit data again -> verify we can see both latest and snapshotted states.
at1 = t.head
"""
zfh = zf.fileh_open(_use_wcfs=False)
vma1 = zfh.mmap(2, 1)
vma2 = zfh.mmap(2+1, 1)
memcpy(vma1,b'beta')
memcpy(vma2,b'gamma')
"""
t.change(zf, {2: b'beta', 3: b'gamma'})
t.commit()
......@@ -419,12 +411,6 @@ def test_wcfs():
# >>> commit again without changing zf size
at2 = t.head
f2 = t.open(zf, at=at2)
"""
zfh = zf.fileh_open(_use_wcfs=False)
vma = zfh.mmap(2, 1)
memcpy(vma, b'kitty')
"""
t.change(zf, {2: b'kitty'})
t.commit()
......
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