From 7fd664b94aea1f3f8a65715af52c2763b1026ada Mon Sep 17 00:00:00 2001 From: David Kennedy Date: Mon, 4 Mar 2024 13:49:47 -0500 Subject: [PATCH] small fix to tests outside of the scope of this ticket --- src/registrar/tests/test_admin.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/registrar/tests/test_admin.py b/src/registrar/tests/test_admin.py index d76f12f35..3010247e7 100644 --- a/src/registrar/tests/test_admin.py +++ b/src/registrar/tests/test_admin.py @@ -1542,6 +1542,8 @@ class DomainInvitationAdminTest(TestCase): def tearDown(self): """Delete all DomainInvitation objects""" DomainInvitation.objects.all().delete() + User.objects.all().delete() + Contact.objects.all().delete() def test_get_filters(self): """Ensures that our filters are displaying correctly"""