diff options
author | Kali Kaneko <kali@leap.se> | 2017-10-30 17:58:47 +0100 |
---|---|---|
committer | Kali Kaneko <kali@leap.se> | 2017-10-30 17:58:47 +0100 |
commit | 7bb6db86ae94d9b459de010812c7f03568299aed (patch) | |
tree | 88fe473fc5b9348d1a649f2bfa73ea5450063571 /tests/e2e | |
parent | aa2f4cfe29e82eb3484b5117ee7c873603068c5e (diff) |
[bug] fix test flakyness
Diffstat (limited to 'tests/e2e')
-rwxr-xr-x | tests/e2e/conditional_downloads.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/e2e/conditional_downloads.py b/tests/e2e/conditional_downloads.py index 4f7866b3..997e8999 100755 --- a/tests/e2e/conditional_downloads.py +++ b/tests/e2e/conditional_downloads.py @@ -35,7 +35,7 @@ def main(reactor, *args): # it was not modified current = os.path.getmtime(fname) print "CURRENT MTIME", current - assert current == past + assert int(current) == past print 'OK' shutil.rmtree(tmp) |