Fixed #25780 -- Removed redundant status code assertions from tests

This commit is contained in:
Alex Morozov 2015-11-21 17:00:11 +03:00 committed by Claude Paroz
parent 68554d1676
commit 13dba4dba3
11 changed files with 0 additions and 53 deletions

View file

@ -326,7 +326,6 @@ class CustomURLConfTest(SimpleTestCase):
def test_custom_urlconf(self):
response = self.client.get('/template_response_view/')
self.assertEqual(response.status_code, 200)
self.assertContains(response, 'This is where you can find the snark: /snark/')