diff --git a/colab/accounts/tests/test_utils_validators.py b/colab/accounts/tests/test_utils_validators.py index 7b7f972..9204806 100644 --- a/colab/accounts/tests/test_utils_validators.py +++ b/colab/accounts/tests/test_utils_validators.py @@ -6,8 +6,8 @@ from ..utils.validators import validate_social_account class TestValidators(TestCase): def test_validate_social_account_with_fake_account(self): - self.assertFalse(validate_social_account('john-fake', - 'http://twitter.com')) + self.assertFalse(validate_social_account('john-fake', + 'http://twitter.com')) def test_validate_social_account(self): self.assertTrue(validate_social_account('john', 'http://twitter.com')) diff --git a/colab/plugins/tests/test_views.py b/colab/plugins/tests/test_views.py index 2227044..6fe91bc 100644 --- a/colab/plugins/tests/test_views.py +++ b/colab/plugins/tests/test_views.py @@ -6,7 +6,7 @@ from colab.accounts.models import User class ViewsTest(TestCase): - + def setUp(self): self.view = ColabProxyView() self.factory = RequestFactory() @@ -18,5 +18,5 @@ class ViewsTest(TestCase): request = self.factory.get('/') request.user = self.user - with self.assertRaises(NotImplementedError): + with self.assertRaises(NotImplementedError): self.view.dispatch(request, '/') -- libgit2 0.21.2