mirror of
https://github.com/vanhoefm/fragattacks.git
synced 2024-11-25 00:38:24 -05:00
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
@ -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 New Issue
Block a user