tests: Fix sqlite run column to be an integer

Commit 781b65cfbb ended up accidentally
changing this from an integer to a string. Fix this by not converting
the variable into a string.

Signed-hostap: Jouni Malinen <jouni@qca.qualcomm.com>
This commit is contained in:
Jouni Malinen 2013-10-31 10:43:02 +02:00 committed by Jouni Malinen
parent 970d3b096f
commit 6a5b4b1a66

View file

@ -161,7 +161,7 @@ def main():
conn = None
if conn:
run = str(int(time.time()))
run = int(time.time())
if args.update_tests_db:
for t in tests: