mirror of
https://github.com/django/django.git
synced 2025-08-03 10:34:04 +00:00
Fixed all E226 violations
This commit is contained in:
parent
7288e1b02b
commit
c347f78cc1
51 changed files with 150 additions and 150 deletions
|
@ -162,7 +162,7 @@ class RequestsTests(SimpleTestCase):
|
|||
response.set_cookie('max_age', max_age=10)
|
||||
max_age_cookie = response.cookies['max_age']
|
||||
self.assertEqual(max_age_cookie['max-age'], 10)
|
||||
self.assertEqual(max_age_cookie['expires'], cookie_date(time.time()+10))
|
||||
self.assertEqual(max_age_cookie['expires'], cookie_date(time.time() + 10))
|
||||
|
||||
def test_httponly_cookie(self):
|
||||
response = HttpResponse()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue