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:
parent
970d3b096f
commit
6a5b4b1a66
1 changed files with 1 additions and 1 deletions
|
@ -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:
|
||||
|
|
Loading…
Reference in a new issue