Commit f723afbf authored by Kirill Smelkov's avatar Kirill Smelkov

.

parent a1712007
......@@ -209,7 +209,7 @@ def test_wcfs():
assert st.st_mtime == tidtime(tid1)
# head/at = last txn of whole db
assert readfile(t.path("head/at")) == h(tid2)
assert t.read("head/at") == h(tid2)
# commit data to f and make sure we can see it on wcfs
......@@ -230,7 +230,7 @@ def test_wcfs():
st = t.stat(f)
assert st.st_size == fsize
assert st.st_mtime == tidtime(t.head)
assert readfile(t.path("head/at")) == h(t.head)
assert t.read("head/at") == h(t.head)
data = t.read(f)
assert len(data) == fsize
......@@ -262,7 +262,6 @@ def test_wcfs():
assert st.st_size == fsize
assert st.st_mtime == tidtime(t.head)
assert t.read("head/at") == h(t.head)
assert readfile(t.path("head/at")) == h(t.head)
data = t.read(f)
assert len(data) == fsize
......
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