diff options
Diffstat (limited to 'hyperkitty/tests/test_views.py')
-rw-r--r-- | hyperkitty/tests/test_views.py | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/hyperkitty/tests/test_views.py b/hyperkitty/tests/test_views.py index b94ef43..649edaa 100644 --- a/hyperkitty/tests/test_views.py +++ b/hyperkitty/tests/test_views.py @@ -32,7 +32,7 @@ class AccountViewsTestCase(TestCase): def test_login(self): # Try to access user profile (private data) without logging in response = self.client.get(reverse('user_profile')) - self.assertRedirects(response, "%s?next=%s" % (reverse('user_login'),reverse('user_profile'))) + self.assertRedirects(response, "%s?next=%s" % (reverse('user_login'), reverse('user_profile'))) def test_profile(self): User.objects.create_user('testuser', 'syst3m.w0rm+test@gmail.com', 'testPass') @@ -64,9 +64,3 @@ class AccountViewsTestCase(TestCase): # @TODO: Try to register a user and verify its working - - - - - -
\ No newline at end of file |