diff --git a/src/registrar/fixtures.py b/src/registrar/fixtures.py index 3ef9640fe..2c94a1eb4 100644 --- a/src/registrar/fixtures.py +++ b/src/registrar/fixtures.py @@ -72,11 +72,6 @@ class UserFixture: "first_name": "Rebecca", "last_name": "Hsieh", }, - { - "username": "fa69c8e8-da83-4798-a4f2-263c9ce93f52", - "first_name": "Dave", - "last_name": "Kennedy", - }, ] STAFF = [ diff --git a/src/registrar/views/index.py b/src/registrar/views/index.py index 273ba8cb0..186535aa3 100644 --- a/src/registrar/views/index.py +++ b/src/registrar/views/index.py @@ -10,7 +10,7 @@ def index(request): if request.user.is_authenticated: applications = DomainApplication.objects.filter(creator=request.user) # Let's exclude the approved applications since our - # domain_applications context will be used to populate + # domain_applications context will be used to populate # the active applications table context["domain_applications"] = applications.exclude(status="approved")