diff options
author | Andrey Zelenkov <zelenkov@nginx.com> | 2018-03-21 18:26:40 +0300 |
---|---|---|
committer | Andrey Zelenkov <zelenkov@nginx.com> | 2018-03-21 18:26:40 +0300 |
commit | c7e67446a3054998893d64cbab150810d2a99aa5 (patch) | |
tree | 55e447f271a8553112d93149851b71a83eb5af43 /test/test_python_application.py | |
parent | 37051b6c15cce7d6ab01c50e1086f8ef0b34e93d (diff) | |
download | unit-c7e67446a3054998893d64cbab150810d2a99aa5.tar.gz unit-c7e67446a3054998893d64cbab150810d2a99aa5.tar.bz2 |
Tests: Ruby module.
Diffstat (limited to 'test/test_python_application.py')
-rw-r--r-- | test/test_python_application.py | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/test/test_python_application.py b/test/test_python_application.py index 3090cb2a..1a6f4a1e 100644 --- a/test/test_python_application.py +++ b/test/test_python_application.py @@ -1,4 +1,3 @@ -import time import unittest import unit @@ -22,9 +21,8 @@ class TestUnitPythonApplication(unit.TestUnitApplicationPython): headers = resp['headers'] self.assertRegex(headers.pop('Server'), r'Unit/[\d\.]+', 'server header') - self.assertLess(abs(time.mktime(time.gmtime()) - - time.mktime(time.strptime(headers.pop('Date'), - '%a, %d %b %Y %H:%M:%S GMT'))), 5, 'date header') + self.assertLess(abs(self.date_to_sec_epoch(headers.pop('Date')) - + self.sec_epoch()), 5, 'date header') self.assertDictEqual(headers, { 'Content-Length': str(len(body)), 'Content-Type': 'text/html', |