From 0c1e8a2dda4a08b400710ab066edc5c4a6e1215b Mon Sep 17 00:00:00 2001 From: David Kennedy Date: Thu, 7 Sep 2023 07:42:07 -0400 Subject: [PATCH] fixed a merge issue, and some code reformatting --- src/registrar/admin.py | 5 +---- src/registrar/tests/test_admin.py | 1 - 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/src/registrar/admin.py b/src/registrar/admin.py index 46ba254a6..e4619737e 100644 --- a/src/registrar/admin.py +++ b/src/registrar/admin.py @@ -212,10 +212,7 @@ class DomainAdmin(ListHeaderAdmin): else: self.message_user( request, - ( - "%s is ready. This domain is accessible on the public " - "internet." - ) + ("%s is ready. This domain is accessible on the public internet.") % obj.name, ) return HttpResponseRedirect(".") diff --git a/src/registrar/tests/test_admin.py b/src/registrar/tests/test_admin.py index e8b07ed5c..e556adcec 100644 --- a/src/registrar/tests/test_admin.py +++ b/src/registrar/tests/test_admin.py @@ -15,7 +15,6 @@ from registrar.models import ( DomainInformation, User, DomainInvitation, - Domain, ) from .common import ( completed_application,