From: Jouni Malinen Date: Thu, 31 Oct 2013 08:43:02 +0000 (+0200) Subject: tests: Fix sqlite run column to be an integer X-Git-Tag: hostap_2_1~713 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6a5b4b1a668fc30482b444d3d87186612de0516f;p=thirdparty%2Fhostap.git 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 --- diff --git a/tests/hwsim/run-tests.py b/tests/hwsim/run-tests.py index 5a2655874..846f0dce5 100755 --- a/tests/hwsim/run-tests.py +++ b/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: