summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKali Kaneko <kali@leap.se>2017-09-20 19:08:25 +0200
committerKali Kaneko <kali@leap.se>2017-09-20 19:08:25 +0200
commit899828de0662e6832bc63c441d75e09b5293c41e (patch)
treef2ec08d0579896b219eba6ac3f081ee96f56d6a4
parent0d0459ac31f40d90270de0a9da8e1eac0b57784d (diff)
-rwxr-xr-xtests/e2e/conditional_downloads.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/e2e/conditional_downloads.py b/tests/e2e/conditional_downloads.py
index 6b9a8409..cbd252fd 100755
--- a/tests/e2e/conditional_downloads.py
+++ b/tests/e2e/conditional_downloads.py
@@ -28,11 +28,14 @@ def main(reactor, *args):
assert filesize > 1
# touch file to 5 minutes in the past
past = int(os.path.getmtime(fname)) - 300
+ print "PAST MTIME", past
os.utime(fname, (past, past))
assert os.path.getmtime(fname) == past
yield httpRequest(client._agent, URI, method='GET', saveto=fname)
# it was not modified
- assert os.path.getmtime(fname) == past
+ current = os.path.getmtime(fname)
+ print "CURRENT MTIME", current
+ assert current == past
print 'OK'
shutil.rmtree(tmp)