aboutsummaryrefslogtreecommitdiffstats
path: root/tests/test_request.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_request.py')
-rw-r--r--tests/test_request.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/test_request.py b/tests/test_request.py
index 0cde0fb4..8b048b5c 100644
--- a/tests/test_request.py
+++ b/tests/test_request.py
@@ -272,7 +272,8 @@ class MockView(APIView):
return Response(status=status.INTERNAL_SERVER_ERROR)
-urlpatterns = patterns('',
+urlpatterns = patterns(
+ '',
(r'^$', MockView.as_view()),
)