get mtime in utc

This commit is contained in:
David Lord 2017-04-13 14:55:56 -07:00
parent 69df465cac
commit 151463eb57

View file

@ -515,7 +515,7 @@ class TestSendfile(object):
assert rv.status_code == 416
rv.close()
last_modified = datetime.datetime.fromtimestamp(os.path.getmtime(
last_modified = datetime.datetime.utcfromtimestamp(os.path.getmtime(
os.path.join(app.root_path, 'static/index.html'))).replace(
microsecond=0)