Skip to content

Commit

Permalink
Remove extra '/' in ipfilter path
Browse files Browse the repository at this point in the history
  • Loading branch information
tony-griffin committed Feb 26, 2025
1 parent a30d3c3 commit 38ce0f4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/browser/ip_filter_check/test_ipfilter.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ def setup_basic_auth(page):
def test_ipfilter_endpoint(page: Page):
web_service_url = os.getenv("WEB_SERVICE_URL")
page = setup_basic_auth(page)
response = page.goto(f"{web_service_url}/ipfilter")
response = page.goto(f"{web_service_url}ipfilter")

assert response.status == 200
assert response.text() == "ok"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from tests.browser.src.landing_page_checks import assert_landing_page_has_normal_content


def test_page_loads_ok_and_shows_default_offline_message(page: Page):
def test_maintenance_page_loads_ok_and_shows_default_offline_message(page: Page):
response = page.goto(os.getenv("WEB_SERVICE_URL"))

assert response.status == 503
Expand Down

0 comments on commit 38ce0f4

Please sign in to comment.