tests: Fix sqlite run column to be an integer
authorJouni Malinen <jouni@qca.qualcomm.com>
Thu, 31 Oct 2013 08:43:02 +0000 (10:43 +0200)
committerJouni Malinen <j@w1.fi>
Thu, 31 Oct 2013 09:08:16 +0000 (11:08 +0200)
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>

tests/hwsim/run-tests.py

index 5a26558..846f0dc 100755 (executable)
@@ -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: