forgot to cast to int with the sith run command

This commit is contained in:
David Halter
2013-07-17 16:38:28 +02:00
parent 45c8cc739b
commit 8490b1d0ff

View File

@@ -139,7 +139,8 @@ def main(arguments):
t.run(debugger)
elif arguments['run']:
TestCase(arguments['<operation>'], arguments['<path>'],
arguments['<line>'], arguments['<column>']).run(debugger)
int(arguments['<line>']), int(arguments['<column>'])
).run(debugger)
else:
for _ in range(int(arguments['--maxtries'])):
t = TestCase.generate(arguments['<path>'] or '.')