updating css class name in authentication test test_login_view_renders_on_get

This commit is contained in:
Daniel Ryan 2014-09-15 10:49:18 -04:00
parent 88cab1742f
commit c9045c5ff2

View File

@ -142,7 +142,7 @@ class SessionAuthTests(TestCase):
cf. [#1810](https://github.com/tomchristie/django-rest-framework/pull/1810)
"""
response = self.csrf_client.get('/auth/login/')
self.assertContains(response, '<Label class="span4">Username:</label>')
self.assertContains(response, '<Label class="col-md-4">Username:</label>')
def test_post_form_session_auth_failing_csrf(self):
"""