diff options
| author | Jay Cox <jaycox@linear3d.com> | 2015-04-27 22:23:42 -0700 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2015-07-31 12:04:06 -0400 |
| commit | 434d309ef6dbecbfd2b322d3a1da78aa5cb05fa8 (patch) | |
| tree | 70fa5bf07614e81ca9d32ae1d105ce3b21cf1cdc /tests/test_client_regress | |
| parent | 1e2362ca0f2805e91204a7b005e5aed293b40c9e (diff) | |
Fixed #24720 -- Avoided resolving URLs that don't end in a slash twice in CommonMiddleware.
This speeds up affected requests by about 5%.
Diffstat (limited to 'tests/test_client_regress')
| -rw-r--r-- | tests/test_client_regress/views.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_client_regress/views.py b/tests/test_client_regress/views.py index d21448cba1..6ba419833a 100644 --- a/tests/test_client_regress/views.py +++ b/tests/test_client_regress/views.py @@ -66,7 +66,7 @@ def nested_view(request): """ setup_test_environment() c = Client() - c.get("/no_template_view") + c.get("/no_template_view/") return render_to_response('base.html', {'nested': 'yes'}) |
