summaryrefslogtreecommitdiff
path: root/tests/e2e/conditional_downloads.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/e2e/conditional_downloads.py')
-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)