1
0
mirror of https://github.com/django/django.git synced 2025-11-07 07:15:35 +00:00

Fixed #33571 -- Fixed static serving views crash when If-Modified-Since is empty.

Regression in d6aff369ad.
This commit is contained in:
Collin Anderson
2022-03-11 00:19:01 -05:00
committed by GitHub
parent d90e34c61b
commit 71017a68a6
2 changed files with 6 additions and 1 deletions

View File

@@ -191,3 +191,6 @@ class StaticUtilsTests(unittest.TestCase):
mtime = 1343416141.107817
header = http_date(mtime)
self.assertFalse(was_modified_since(header, mtime))
def test_was_modified_since_empty_string(self):
self.assertTrue(was_modified_since(header="", mtime=1))