diff options
Diffstat (limited to 'tests/e2e/conditional_downloads.py')
-rwxr-xr-x | tests/e2e/conditional_downloads.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/e2e/conditional_downloads.py b/tests/e2e/conditional_downloads.py index 6b9a8409..4f7866b3 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) |