Commit 208eb13a authored by Stefan Behnel's avatar Stefan Behnel

Correctly support integer value comparisons in TreePath test support.

parent 86c68858
......@@ -180,6 +180,8 @@ def parse_path_value(next):
return int(value)
except ValueError:
pass
elif token[1].isdigit():
return int(token[1])
else:
name = token[1].lower()
if name == 'true':
......
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