Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
D
django
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
django
Commits
5a465df7
Kaydet (Commit)
5a465df7
authored
Şub 14, 2019
tarafından
Bernhard M. Wiedemann
Kaydeden (comit)
Tim Graham
Şub 14, 2019
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Made a requests test that will fail in 2028 fail 10 years later.
2038 is chosen for compatibility with 32-bit systems.
üst
ed7dee55
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
test_cookie.py
tests/responses/test_cookie.py
+2
-2
No files found.
tests/responses/test_cookie.py
Dosyayı görüntüle @
5a465df7
...
...
@@ -47,12 +47,12 @@ class SetCookieTests(SimpleTestCase):
def
test_far_expiration
(
self
):
"""Cookie will expire when a distant expiration time is provided."""
response
=
HttpResponse
()
response
.
set_cookie
(
'datetime'
,
expires
=
datetime
(
20
2
8
,
1
,
1
,
4
,
5
,
6
))
response
.
set_cookie
(
'datetime'
,
expires
=
datetime
(
20
3
8
,
1
,
1
,
4
,
5
,
6
))
datetime_cookie
=
response
.
cookies
[
'datetime'
]
self
.
assertIn
(
datetime_cookie
[
'expires'
],
# assertIn accounts for slight time dependency (#23450)
(
'
Sat, 01 Jan 2028 04:05:06 GMT'
,
'Sat, 01 Jan 202
8 04:05:07 GMT'
)
(
'
Fri, 01 Jan 2038 04:05:06 GMT'
,
'Fri, 01 Jan 203
8 04:05:07 GMT'
)
)
def
test_max_age_expiration
(
self
):
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment