range, not value

This commit is contained in:
Alex Groce
2018-09-02 13:16:30 -07:00
parent ba25358ebf
commit 3625454fbb
+1 -1
View File
@@ -149,7 +149,7 @@ def main():
continue
newTest = bytearray(currentTest)
newTest[b] = currentTest[b]-1
newTest = newTest[:b+1] + newTest[b+2]
newTest = newTest[:b+1] + newTest[b+2:]
with open(".candidate.test", 'wb') as outf:
outf.write(newTest)
r = runCandidate(".candidate.test")