diff --git a/src/epplibwrapper/tests/test_client.py b/src/epplibwrapper/tests/test_client.py index 2772ab428..57c99a05f 100644 --- a/src/epplibwrapper/tests/test_client.py +++ b/src/epplibwrapper/tests/test_client.py @@ -7,7 +7,6 @@ from api.tests.common import less_console_noise_decorator from gevent.exceptions import ConcurrentObjectUseError from epplibwrapper.client import EPPLibWrapper from epplibwrapper.errors import RegistryError, LoginError -from .common import less_console_noise import logging try: diff --git a/src/registrar/tests/test_admin_request.py b/src/registrar/tests/test_admin_request.py index c3fa81615..c7daa6428 100644 --- a/src/registrar/tests/test_admin_request.py +++ b/src/registrar/tests/test_admin_request.py @@ -1684,7 +1684,7 @@ class TestDomainRequestAdmin(MockEppLib): request.user = self.superuser request.session = {} - + # Define a custom implementation for is_active def custom_is_active(self): return domain_is_active # Override to return True diff --git a/src/registrar/tests/test_transition_domain_migrations.py b/src/registrar/tests/test_transition_domain_migrations.py index b674dedcd..be7bcf9e4 100644 --- a/src/registrar/tests/test_transition_domain_migrations.py +++ b/src/registrar/tests/test_transition_domain_migrations.py @@ -395,7 +395,7 @@ class TestOrganizationMigration(TestCase): # == Third, test that we've loaded data as we expect == # _domain = Domain.objects.filter(name="fakewebsite2.gov").get() domain_information = DomainInformation.objects.filter(domain=_domain).get() - + expected_creator = User.objects.filter(username="System").get() expected_so = Contact.objects.filter( first_name="Seline", middle_name="testmiddle2", last_name="Tower" @@ -450,7 +450,7 @@ class TestOrganizationMigration(TestCase): # == Fourth, test that no data is overwritten as we expect == # _domain = Domain.objects.filter(name="fakewebsite2.gov").get() domain_information = DomainInformation.objects.filter(domain=_domain).get() - + expected_creator = User.objects.filter(username="System").get() expected_so = Contact.objects.filter( first_name="Seline", middle_name="testmiddle2", last_name="Tower"