Fix test that had a decreasing write version
Some checks failed
Tests / Clang total: 1039, passed: 1039
Clang |Total|New|Outstanding|Fixed|Trend |:-:|:-:|:-:|:-:|:-: |0|0|0|0|:clap:
Tests / SIMD fallback total: 1039, passed: 1039
Tests / 32-bit versions total: 1039, passed: 1039
weaselab/conflict-set/pipeline/head There was a failure building this commit

This commit is contained in:
2024-06-28 19:57:25 -07:00
parent 648b0b9238
commit 587874841f

View File

@@ -73,7 +73,7 @@ def test_internal_version_zero():
cs.addWrites(0xFFFFFFF1, write(bytes([i])))
for i in range(256 - 25, 256):
cs.addWrites(0xFFFFFFF1, write(bytes([i])))
cs.addWrites(0, write(b"\xff"))
cs.addWrites(0x100000000, write(b"\xff"))
cs.check(read(0xFFFFFFF1, b"\x00", b"\xff"))