summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorPaulb23 <p_batty@hotmail.co.uk>2023-01-14 15:06:44 +0000
committerPaulb23 <p_batty@hotmail.co.uk>2023-01-14 15:28:22 +0000
commit1aac10d73d4f4acb901f2af76fc1c6cc5cb02b75 (patch)
treef6bf80727aac0011f5da7b516ed9fefdfb27c354 /tests
parentd2d5e548c9cac48a89b97ed4dd9bfc93b4528f0d (diff)
Fixed adding extra quote when completing strings
Diffstat (limited to 'tests')
-rw-r--r--tests/scene/test_code_edit.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/scene/test_code_edit.h b/tests/scene/test_code_edit.h
index c68560000c..5447c99a64 100644
--- a/tests/scene/test_code_edit.h
+++ b/tests/scene/test_code_edit.h
@@ -2930,7 +2930,7 @@ TEST_CASE("[SceneTree][CodeEdit] completion") {
code_edit->add_code_completion_option(CodeEdit::CodeCompletionKind::KIND_NODE_PATH, "\"test", "\"test");
code_edit->update_code_completion_options();
code_edit->confirm_code_completion();
- CHECK(code_edit->get_line(0) == "\"\"test\"\"");
+ CHECK(code_edit->get_line(0) == "\"\"test\"");
CHECK(code_edit->get_caret_column() == 7);
code_edit->undo();