diff --git a/src/registrar/tests/test_admin.py b/src/registrar/tests/test_admin.py index 7fbeabf51..c145e1f98 100644 --- a/src/registrar/tests/test_admin.py +++ b/src/registrar/tests/test_admin.py @@ -1136,7 +1136,7 @@ class TestMyUserAdmin(MockDbForSharedTests): def test_analyst_cannot_see_selects_for_portfolio_role_and_permissions_in_user_form(self): """Can only test for the presence of a base element. The multiselects and the h2->h3 conversion are all dynamically generated.""" - + self.client.force_login(self.staffuser) response = self.client.get( "/admin/registrar/user/{}/change/".format(self.meoward_user.id), diff --git a/src/registrar/tests/test_admin_request.py b/src/registrar/tests/test_admin_request.py index a420f43b8..7a7c75ffc 100644 --- a/src/registrar/tests/test_admin_request.py +++ b/src/registrar/tests/test_admin_request.py @@ -1589,7 +1589,7 @@ class TestDomainRequestAdmin(MockEppLib): "is_policy_acknowledged", "cisa_representative_first_name", "cisa_representative_last_name", - "cisa_representative_email" + "cisa_representative_email", ] self.assertEqual(readonly_fields, expected_fields) diff --git a/src/registrar/tests/test_reports.py b/src/registrar/tests/test_reports.py index c2599bfc6..74b84834e 100644 --- a/src/registrar/tests/test_reports.py +++ b/src/registrar/tests/test_reports.py @@ -26,7 +26,6 @@ from django.core.management import call_command from unittest.mock import MagicMock, call, mock_open, patch from api.views import get_current_federal, get_current_full from django.conf import settings -from django.test import RequestFactory from botocore.exceptions import ClientError import boto3_mocking from registrar.utility.s3_bucket import S3ClientError, S3ClientErrorCodes # type: ignore diff --git a/src/registrar/tests/test_views_portfolio.py b/src/registrar/tests/test_views_portfolio.py index bb1bb2846..3ab2fc2fd 100644 --- a/src/registrar/tests/test_views_portfolio.py +++ b/src/registrar/tests/test_views_portfolio.py @@ -10,7 +10,6 @@ from registrar.models import ( User, ) from .common import create_test_user -from .test_views import TestWithUser from waffle.testutils import override_flag import logging