diff options
| author | Tymur Maryokhin | 2014-12-05 00:29:28 +0100 | 
|---|---|---|
| committer | Tymur Maryokhin | 2014-12-05 00:29:28 +0100 | 
| commit | d9930181ee157f51e2fcea33a3af5ea397647324 (patch) | |
| tree | 06e65d1f2a34b70c912dfa3e696611ca0cc00a65 /tests/test_request.py | |
| parent | 45dc44b2038f5533a472b015c45200b5d1ca6052 (diff) | |
| download | django-rest-framework-d9930181ee157f51e2fcea33a3af5ea397647324.tar.bz2 | |
Removed unused imports, pep8 fixes, typo fixes
Diffstat (limited to 'tests/test_request.py')
| -rw-r--r-- | tests/test_request.py | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/tests/test_request.py b/tests/test_request.py index 44afd243..7cf8c327 100644 --- a/tests/test_request.py +++ b/tests/test_request.py @@ -187,7 +187,7 @@ class MockView(APIView):          if request.POST.get('example') is not None:              return Response(status=status.HTTP_200_OK) -        return Response(status=status.INTERNAL_SERVER_ERROR) +        return Response(status=status.HTTP_500_INTERNAL_SERVER_ERROR)  urlpatterns = patterns(      '', | 
