Commit 680e9618241f1db4e0830c2c689e547ca4ce070d
1 parent
f6db3192
Exists in
master
and in
39 other branches
Fixed typos
Showing
1 changed file
with
2 additions
and
2 deletions
Show diff stats
colab/accounts/tests/test_user.py
| ... | ... | @@ -8,11 +8,11 @@ from django.test import TestCase, Client |
| 8 | 8 | |
| 9 | 9 | class UserTest(TestCase): |
| 10 | 10 | |
| 11 | - def setup(self): | |
| 11 | + def setUp(self): | |
| 12 | 12 | self.user = self.create_user() |
| 13 | 13 | self.client = Client() |
| 14 | 14 | |
| 15 | - def teardown(self): | |
| 15 | + def tearDown(self): | |
| 16 | 16 | pass |
| 17 | 17 | |
| 18 | 18 | def create_user(self): | ... | ... |