get rid of async

This commit is contained in:
Kenneth Kehl
2025-06-04 10:31:13 -07:00
parent 15501fb6ce
commit 4cd727ab51
2 changed files with 2 additions and 1 deletions

View File

@@ -12,6 +12,7 @@ python = "^3.13.2"
ago = "~=0.1.0"
beautifulsoup4 = "^4.13.3"
blinker = "~=1.8"
eventlet = "==0.40.0"
exceptiongroup = "==1.3.0"
flask = "~=3.1"
flask-basicauth = "~=0.2"

View File

@@ -10,7 +10,7 @@ from tests.end_to_end.conftest import check_axe_report
E2E_TEST_URI = os.getenv("NOTIFY_E2E_TEST_URI")
async def create_new_template(page):
def create_new_template(page):
current_service_link = page.get_by_text("Current service")
expect(current_service_link).to_be_visible()