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
6f59d291
Kaydet (Commit)
6f59d291
authored
Agu 20, 2014
tarafından
Tim Graham
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fixed flake8 warnings.
üst
d1299fce
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
tests.py
tests/handlers/tests.py
+4
-4
No files found.
tests/handlers/tests.py
Dosyayı görüntüle @
6f59d291
...
...
@@ -47,10 +47,10 @@ class HandlerTests(TestCase):
"""
environ
=
RequestFactory
()
.
get
(
'/'
)
.
environ
raw_query_strings
=
[
b
'want=caf
%
C3
%
A9'
,
# This is the proper way to encode 'café'
b
'want=caf
\xc3\xa9
'
,
# UA forgot to quote bytes
b
'want=caf
%
E9'
,
# UA quoted, but not in UTF-8
b
'want=caf
\xe9
'
,
# UA forgot to convert Latin-1 to UTF-8 and to quote (typical of MSIE)
b
'want=caf
%
C3
%
A9'
,
# This is the proper way to encode 'café'
b
'want=caf
\xc3\xa9
'
,
# UA forgot to quote bytes
b
'want=caf
%
E9'
,
# UA quoted, but not in UTF-8
b
'want=caf
\xe9
'
,
# UA forgot to convert Latin-1 to UTF-8 and to quote (typical of MSIE)
]
got
=
[]
for
raw_query_string
in
raw_query_strings
:
...
...
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