From f2640a3cf97628957f28ea7d9f943ec54610a7e1 Mon Sep 17 00:00:00 2001 From: Max Schmitt Date: Wed, 10 Jan 2024 10:09:38 +0100 Subject: [PATCH] chore: fix typo in example test Fixes https://github.com/microsoft/playwright-python/issues/2234 --- examples/todomvc/mvctests/test_new_todo.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/todomvc/mvctests/test_new_todo.py b/examples/todomvc/mvctests/test_new_todo.py index 15a0dbbbf..f9e069c7b 100644 --- a/examples/todomvc/mvctests/test_new_todo.py +++ b/examples/todomvc/mvctests/test_new_todo.py @@ -64,7 +64,7 @@ def test_new_todo_test_should_clear_text_input_field_when_an_item_is_added( assert_number_of_todos_in_local_storage(page, 1) -def test_new_todo_test_should_append_new_items_to_the_ottom_of_the_list( +def test_new_todo_test_should_append_new_items_to_the_bottom_of_the_list( page: Page, ) -> None: # Create 3 items.