From 2b96f96fc8a7597eebc050d1e9ed8eef6e328496 Mon Sep 17 00:00:00 2001 From: Pavlos Ratis Date: Sun, 8 Sep 2013 14:24:12 +0300 Subject: fix misc pep8 errors --- okupy/tests/integration/test_settings.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'okupy/tests') diff --git a/okupy/tests/integration/test_settings.py b/okupy/tests/integration/test_settings.py index f22e926..3779e51 100644 --- a/okupy/tests/integration/test_settings.py +++ b/okupy/tests/integration/test_settings.py @@ -56,22 +56,22 @@ class SettingsIntegrationTests(TestCase): self.assertTemplateUsed(response, 'base.html') self.assertTemplateUsed(response, 'settings-gentoo.html') - def test_profile_settings_page_returns_404_for_non_authenticated_users(self): + def test_profile_settings_page_returns_404_for_non_auth_users(self): response = self.client.get('/profile-settings/') self.assertTrue(response.status_code, 404) - def test_password_settings_page_returns_404_for_non_authenticated_users(self): + def test_password_settings_page_returns_404_for_non_auth_users(self): response = self.client.get('/password-settings/') self.assertTrue(response.status_code, 404) - def test_email_settings_page_returns_404_for_non_authenticated_users(self): + def test_email_settings_page_returns_404_for_non_auth_users(self): response = self.client.get('/email-settings/') self.assertTrue(response.status_code, 404) - def test_contact_setttings_page_returns_404_for_non_authenticated_users(self): + def test_contact_setttings_page_returns_404_for_non_auth_users(self): response = self.client.get('/contact-settings/') self.assertTrue(response.status_code, 404) - def test_gentoo_account_settings_page_returns_404_for_non_authenticated_users(self): + def test_gentoo_account_settings_page_returns_404_for_non_auth_users(self): response = self.client.get('/gentoo-dev-settings/') self.assertTrue(response.status_code, 404) -- cgit v1.2.3-65-gdbad