From c9045c5ff27812502bd37de5193d0dca8f662eb4 Mon Sep 17 00:00:00 2001 From: Daniel Ryan Date: Mon, 15 Sep 2014 10:49:18 -0400 Subject: [PATCH] updating css class name in authentication test test_login_view_renders_on_get --- tests/test_authentication.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_authentication.py b/tests/test_authentication.py index 32041f9c1..cf5b16692 100644 --- a/tests/test_authentication.py +++ b/tests/test_authentication.py @@ -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, '') + self.assertContains(response, '') def test_post_form_session_auth_failing_csrf(self): """