Browse Source

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>
Jouni Malinen 11 years ago
parent
commit
6a5b4b1a66
1 changed files with 1 additions and 1 deletions
  1. 1 1
      tests/hwsim/run-tests.py

+ 1 - 1
tests/hwsim/run-tests.py

@@ -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: