Fixed test

This commit is contained in:
Yuriy Glukhov 2018-05-08 19:17:28 +03:00
parent a97cb6c32f
commit 37b3803fcf

View File

@ -56,7 +56,7 @@ proc runTests*(filename: string) =
echo " INTERPRETATION:\n", inspectOutput
continue
else:
if input.kind == JString and input.str[0] == '#':
if input.kind == JString and input.str.len != 0 and input.str[0] == '#':
continue
var outRlp = initRlpWriter()