Skip to content

Commit 48e84c1

Browse files
author
Andrei Neagu
committed
typo
1 parent 8e5b3d6 commit 48e84c1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

services/dynamic-scheduler/tests/unit/api_frontend/_common/test_updatable_component.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ async def _ensure_before_corpus(async_page: Page) -> None:
201201
await assert_contains_text(async_page, "BEFORE_CORPUS")
202202

203203

204-
async def _esnure_person_companion(async_page: Page, companion: Pet | Friend) -> None:
204+
async def _ensure_person_companion(async_page: Page, companion: Pet | Friend) -> None:
205205
if isinstance(companion, Pet):
206206
await assert_contains_text(async_page, f"Pet Name: {companion.name}")
207207
await assert_contains_text(async_page, f"Pet Species: {companion.species}")
@@ -220,7 +220,7 @@ async def _ensure_person_is_present(async_page: Page, person: Person) -> None:
220220
await assert_contains_text(async_page, f"Name: {person.name}")
221221
await assert_contains_text(async_page, f"Age: {person.age}")
222222

223-
await _esnure_person_companion(async_page, person.companion)
223+
await _ensure_person_companion(async_page, person.companion)
224224

225225
await _ensure_after_corpus(async_page)
226226

0 commit comments

Comments
 (0)