summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorKali Kaneko <kali@leap.se>2017-10-30 17:58:47 +0100
committerKali Kaneko <kali@leap.se>2017-10-30 17:58:47 +0100
commit7bb6db86ae94d9b459de010812c7f03568299aed (patch)
tree88fe473fc5b9348d1a649f2bfa73ea5450063571 /tests
parentaa2f4cfe29e82eb3484b5117ee7c873603068c5e (diff)
[bug] fix test flakyness
Diffstat (limited to 'tests')
-rwxr-xr-xtests/e2e/conditional_downloads.py2
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)