accounts/tests/test_email_white_list_model.py update function name

This commit is contained in:
Trent Palmer 2021-04-21 16:40:11 -07:00
parent b6ab46dd69
commit 88790e4080
1 changed files with 1 additions and 1 deletions

View File

@ -10,7 +10,7 @@ class EmailWhiteListModelTestCase(TestCase):
email_a.save()
EmailWhiteList.objects.create(email='user_b@example.com')
def test_email(self):
def test_email_white_list_model(self):
white_listed_emails = EmailWhiteList.objects.all()
self.assertTrue(len(white_listed_emails) == 2)