aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPavlos Ratis <dastergon@gentoo.org>2013-09-08 14:24:12 +0300
committerPavlos Ratis <dastergon@gentoo.org>2013-09-08 14:24:12 +0300
commit2b96f96fc8a7597eebc050d1e9ed8eef6e328496 (patch)
tree9c58101702d0ed179429783dc299b8b821e8df2f /okupy/tests
parentMerge pull request #84 from dastergon/split_req (diff)
downloadidentity.gentoo.org-2b96f96fc8a7597eebc050d1e9ed8eef6e328496.tar.gz
identity.gentoo.org-2b96f96fc8a7597eebc050d1e9ed8eef6e328496.tar.bz2
identity.gentoo.org-2b96f96fc8a7597eebc050d1e9ed8eef6e328496.zip
fix misc pep8 errors
Diffstat (limited to 'okupy/tests')
-rw-r--r--okupy/tests/integration/test_settings.py10
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)