Remove unused library

This commit is contained in:
Erin Song 2025-02-07 09:47:56 -08:00
parent 4b403dc6f5
commit 40f21b86ee
No known key found for this signature in database

View file

@ -54,7 +54,6 @@ from registrar.models import (
from .common import ( from .common import (
MockDbForSharedTests, MockDbForSharedTests,
AuditedAdminMockData, AuditedAdminMockData,
MockEppLib,
completed_domain_request, completed_domain_request,
generic_domain_object, generic_domain_object,
less_console_noise, less_console_noise,
@ -121,7 +120,7 @@ class TestFsmModelResource(TestCase):
fsm_field_mock.save.assert_not_called() fsm_field_mock.save.assert_not_called()
class TestDomainInvitationAdmin(MockEppLib, WebTest): class TestDomainInvitationAdmin(WebTest):
"""Tests for the DomainInvitationAdmin class as super user """Tests for the DomainInvitationAdmin class as super user
Notes: Notes:
@ -2073,7 +2072,7 @@ class TestDomainInformationAdmin(TestCase):
self.test_helper.assert_table_sorted("-4", ("-creator__first_name", "-creator__last_name")) self.test_helper.assert_table_sorted("-4", ("-creator__first_name", "-creator__last_name"))
class TestUserDomainRoleAdmin(MockEppLib, WebTest): class TestUserDomainRoleAdmin(WebTest):
"""Tests for the UserDomainRoleAdmin class as super user """Tests for the UserDomainRoleAdmin class as super user
Notes: Notes: