summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorRémi Verschelde <remi@verschelde.fr>2023-06-16 09:07:37 +0200
committerGitHub <noreply@github.com>2023-06-16 09:07:37 +0200
commit9c41c4ecb6d122792fae2060e2a411ecf6812add (patch)
tree752b2ca247f087920723b70a01d3b3ae5d471474 /tests
parentc0d8d91b15597209a1ca865c6ff4f84f06f7de86 (diff)
parent6fb391bc2366cf51780f5bb6eaa199d5b63b9ec1 (diff)
downloadredot-engine-9c41c4ecb6d122792fae2060e2a411ecf6812add.tar.gz
Merge pull request #78316 from akien-mga/codespell
Fix various typos with codespell
Diffstat (limited to 'tests')
-rw-r--r--tests/scene/test_code_edit.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/scene/test_code_edit.h b/tests/scene/test_code_edit.h
index c8ce49f318..d6858fbcb4 100644
--- a/tests/scene/test_code_edit.h
+++ b/tests/scene/test_code_edit.h
@@ -3496,7 +3496,7 @@ TEST_CASE("[SceneTree][CodeEdit] completion") {
code_edit->confirm_code_completion();
CHECK(code_edit->get_line(0) == "test");
- /* Favorize good capitalisation. */
+ /* Favorize good capitalization. */
code_edit->clear();
code_edit->insert_text_at_caret("te");
code_edit->set_caret_column(2);
@@ -3506,7 +3506,7 @@ TEST_CASE("[SceneTree][CodeEdit] completion") {
code_edit->confirm_code_completion();
CHECK(code_edit->get_line(0) == "test");
- /* Favorize location to good capitalisation. */
+ /* Favorize location to good capitalization. */
code_edit->clear();
code_edit->insert_text_at_caret("te");
code_edit->set_caret_column(2);
@@ -3526,7 +3526,7 @@ TEST_CASE("[SceneTree][CodeEdit] completion") {
code_edit->confirm_code_completion();
CHECK(code_edit->get_line(0) == "stest");
- /* Favorize good capitalisation to closest to start. */
+ /* Favorize good capitalization to closest to start. */
code_edit->clear();
code_edit->insert_text_at_caret("te");
code_edit->set_caret_column(2);