Update test with new button text, fix favicon path

This commit is contained in:
igorkorenfeld 2023-04-06 14:14:06 -04:00
parent 225ac09529
commit c69bc75115
No known key found for this signature in database
GPG key ID: 826947A4B867F659
2 changed files with 5 additions and 5 deletions

View file

@ -17,16 +17,16 @@
{% block extra_meta %}{% endblock extra_meta %}
<link rel="icon" type="image/png" sizes="32x32"
href="{% static '/img/registrar/favicons/favicon-32.png' %}"
href="{% static 'img/registrar/favicons/favicon-32.png' %}"
>
<link rel="icon" type="image/png" sizes="192x192"
href="{% static '/img/registrar/favicons/favicon-192.png' %}"
href="{% static 'img/registrar/favicons/favicon-192.png' %}"
>
<link rel="icon" type="image/svg+xml"
href="{% static '/img/registrar/favicons/favicon.svg' %}"
href="{% static 'img/registrar/favicons/favicon.svg' %}"
>
<link rel="shortcut icon" type="image/x-icon"
href="{% static '/img/registrar/favicons/favicon.ico' %}"
href="{% static 'img/registrar/favicons/favicon.ico' %}"
>
<link rel="apple-touch-icon" size="180x180"
href="{% static 'img/registrar/favicons/favicon-180.png' %}"

View file

@ -1090,7 +1090,7 @@ class TestDomainDetail(TestWithDomainPermissions, WebTest):
home_page = self.app.get("/")
self.assertContains(home_page, "igorville.gov")
# click the "Edit" link
detail_page = home_page.click("Edit")
detail_page = home_page.click("Manage")
self.assertContains(detail_page, "igorville.gov")
def test_domain_user_management(self):