diff options
author | 2013-09-08 04:57:21 -0700 | |
---|---|---|
committer | 2013-09-08 04:57:21 -0700 | |
commit | 8d9a738fc2e132b8705b1c9b30a94e0349a040e8 (patch) | |
tree | c98802ef173f5e4220233d518460ec9ee5c10786 /okupy/tests | |
parent | Merge pull request #85 from dastergon/verbosity (diff) | |
parent | fix misc pep8 errors (diff) | |
download | identity.gentoo.org-8d9a738fc2e132b8705b1c9b30a94e0349a040e8.tar.gz identity.gentoo.org-8d9a738fc2e132b8705b1c9b30a94e0349a040e8.tar.bz2 identity.gentoo.org-8d9a738fc2e132b8705b1c9b30a94e0349a040e8.zip |
Merge pull request #86 from dastergon/misc_flake8
fix misc pep8 errors
Diffstat (limited to 'okupy/tests')
-rw-r--r-- | okupy/tests/integration/test_settings.py | 10 |
1 files changed, 5 insertions, 5 deletions
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) |