mirror of
https://github.com/vanhoefm/fragattacks.git
synced 2025-02-16 09:03:05 -05:00
tests: Fix sqlite run column to be an integer
Commit 781b65cfbb444e2a479f2ea282879b5678235413 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
|
conn = None
|
||||||
|
|
||||||
if conn:
|
if conn:
|
||||||
run = str(int(time.time()))
|
run = int(time.time())
|
||||||
|
|
||||||
if args.update_tests_db:
|
if args.update_tests_db:
|
||||||
for t in tests:
|
for t in tests:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user