From b0c8769a209d47ecacc99ed7dd16557be1ab3225 Mon Sep 17 00:00:00 2001 From: Amjith Ramanujam Date: Sun, 10 Nov 2024 11:06:04 -0800 Subject: [PATCH] Fix the test. --- test/test_smart_completion_public_schema_only.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/test/test_smart_completion_public_schema_only.py b/test/test_smart_completion_public_schema_only.py index bed989fe..30b15ac2 100644 --- a/test/test_smart_completion_public_schema_only.py +++ b/test/test_smart_completion_public_schema_only.py @@ -105,7 +105,14 @@ def test_function_name_completion(completer, complete_event): assert list(result) == list( [ Completion(text="MAX", start_position=-2), + Completion(text="CHANGE MASTER TO", start_position=-2), + Completion(text="CURRENT_TIMESTAMP", start_position=-2), + Completion(text="DECIMAL", start_position=-2), + Completion(text="FORMAT", start_position=-2), Completion(text="MASTER", start_position=-2), + Completion(text="PRIMARY", start_position=-2), + Completion(text="ROW_FORMAT", start_position=-2), + Completion(text="SMALLINT", start_position=-2), ] )