fix typo in type name

This commit is contained in:
Alex Groce
2018-09-02 13:05:44 -07:00
parent e08c7c8479
commit b0ca3ee60e
+1 -1
View File
@@ -145,7 +145,7 @@ def main():
currentTest = newTest
break
for b in range(0, len(currentTest)):
newTest = byteArray(currentTest)
newTest = bytearray(currentTest)
newTest[b] = currentTest[b]-1
newTest = newTest[:b+1] + newTest[b+2]
with open(".candidate.test", 'wb') as outf: