1
0
Fork 0

Merging upstream version 1.31.2.

Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
Daniel Baumann 2025-05-04 09:25:37 +02:00
parent ad2dbf11aa
commit 85df42f7df
Signed by: daniel
GPG key ID: FBB4F0E80A80222F
23 changed files with 166 additions and 107 deletions

View file

@ -28,7 +28,7 @@ def test_select_keyword_completion(completer, complete_event):
text = "SEL"
position = len("SEL")
result = list(completer.get_completions(Document(text=text, cursor_position=position), complete_event))
assert result == list([Completion(text="SELECT", start_position=-3)])
assert result == [Completion(text="SELECT", start_position=-3)]
def test_function_name_completion(completer, complete_event):