From 6e1c2f10fdbdb6992981abfdccfc871b83a3b3d6 Mon Sep 17 00:00:00 2001 From: Jon Roberts Date: Wed, 10 May 2023 11:46:12 -0400 Subject: [PATCH] lint --- src/registrar/tests/test_models.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/registrar/tests/test_models.py b/src/registrar/tests/test_models.py index 26a591131..d0b0a67fc 100644 --- a/src/registrar/tests/test_models.py +++ b/src/registrar/tests/test_models.py @@ -191,6 +191,7 @@ class TestPermissions(TestCase): # should be a role for this user self.assertTrue(UserDomainRole.objects.get(user=user, domain=domain)) + class TestDomainInfo(TestCase): """Test creation of Domain Information when approved.""" @@ -208,6 +209,7 @@ class TestDomainInfo(TestCase): # should be an information present for this domain self.assertTrue(DomainInformation.objects.get(domain=domain)) + class TestInvitations(TestCase): """Test the retrieval of invitations."""