diff --git a/src/registrar/tests/test_admin.py b/src/registrar/tests/test_admin.py index 7c0c81db4..dcffce6f8 100644 --- a/src/registrar/tests/test_admin.py +++ b/src/registrar/tests/test_admin.py @@ -1960,8 +1960,8 @@ class TestDomainInformationAdmin(TestCase): # Get the other contact other_contact = domain_info.other_contacts.all().first() - p = "userpass" - self.client.login(username="staffuser", password=p) + p = "adminpass" + self.client.login(username="superuser", password=p) response = self.client.get( "/admin/registrar/domaininformation/{}/change/".format(domain_info.pk), @@ -2005,8 +2005,8 @@ class TestDomainInformationAdmin(TestCase): domain_request.approve() domain_info = DomainInformation.objects.filter(domain=domain_request.approved_domain).get() - p = "userpass" - self.client.login(username="staffuser", password=p) + p = "adminpass" + self.client.login(username="superuser", password=p) response = self.client.get( "/admin/registrar/domaininformation/{}/change/".format(domain_info.pk), follow=True, diff --git a/src/registrar/tests/test_migrations.py b/src/registrar/tests/test_migrations.py index bf3b09d0d..add65105a 100644 --- a/src/registrar/tests/test_migrations.py +++ b/src/registrar/tests/test_migrations.py @@ -34,7 +34,6 @@ class TestGroups(TestCase): "view_logentry", "change_contact", "view_domain", - "change_domaininformation", "add_domaininvitation", "view_domaininvitation", "change_domainrequest",