Skip to content

Commit

Permalink
Merge branch 'master' into new-versions
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Howitz committed Feb 9, 2019
2 parents 105c5ff + bd17e8f commit 7b6c185
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ZPublisher/tests/test_WSGIPublisher.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ def test_listHeaders_includes_Date_header(self):
headers = response.listHeaders()
whenstr = time.strftime('%a, %d %b %Y %H:%M:%S GMT',
time.gmtime(time.mktime(WHEN)))
self.assertTrue(('Date', whenstr) in headers)
self.assertIn(('Date', whenstr), headers)

def test_setBody_IUnboundStreamIterator(self):
from ZPublisher.Iterators import IUnboundStreamIterator
Expand Down

0 comments on commit 7b6c185

Please sign in to comment.