diff options
author | Andrey Zelenkov <zelenkov@nginx.com> | 2018-04-02 15:50:05 +0300 |
---|---|---|
committer | Andrey Zelenkov <zelenkov@nginx.com> | 2018-04-02 15:50:05 +0300 |
commit | 2028f3a04be9836ff0f904a487f05bcff75d528d (patch) | |
tree | 5fcbb33b0672051ca138dad281dba950688add79 /test/unit.py | |
parent | 5177b085b13be78d216441d21480caf81eb968c2 (diff) | |
download | unit-2028f3a04be9836ff0f904a487f05bcff75d528d.tar.gz unit-2028f3a04be9836ff0f904a487f05bcff75d528d.tar.bz2 |
Tests: use "%Z" directive while parsing Date header.
Diffstat (limited to 'test/unit.py')
-rw-r--r-- | test/unit.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/unit.py b/test/unit.py index cdf9ff62..e522e2da 100644 --- a/test/unit.py +++ b/test/unit.py @@ -335,7 +335,7 @@ class TestUnitApplicationProto(TestUnitControl): return time.mktime(time.gmtime()) def date_to_sec_epoch(self, date): - return time.mktime(time.strptime(date, '%a, %d %b %Y %H:%M:%S GMT')) + return time.mktime(time.strptime(date, '%a, %d %b %Y %H:%M:%S %Z')) def search_in_log(self, pattern): with open(self.testdir + '/unit.log', 'r') as f: |