1
0
mirror of https://github.com/django/django.git synced 2025-10-31 09:41:08 +00:00

[4.0.x] Fixed #33132 -- Fixed test client handling of querystring only redirects.

Regression in 1e5aa8e1c7.

Backport of b1bf8c8a4b from main
This commit is contained in:
Jaap Roes
2021-09-23 12:18:15 +02:00
committed by Carlton Gibson
parent 715aa2db67
commit 5d36af6f6f
4 changed files with 27 additions and 1 deletions

View File

@@ -8,6 +8,7 @@ urlpatterns = [
path('upload_view/', views.upload_view, name='upload_view'),
path('get_view/', views.get_view, name='get_view'),
path('post_view/', views.post_view),
path('post_then_get_view/', views.post_then_get_view),
path('put_view/', views.put_view),
path('trace_view/', views.trace_view),
path('header_view/', views.view_with_header),