Skip to content

Commit

Permalink
jedi/tests: Fix order for Poll/poll.
Browse files Browse the repository at this point in the history
Poll needs to come first for correct typing of poll.
  • Loading branch information
laurensvalk committed Dec 1, 2022
1 parent 3c0aaea commit 87c2802
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jedi/tests/test_complete_import.py
Original file line number Diff line number Diff line change
Expand Up @@ -238,8 +238,8 @@ def test_from_uselect_import():
code = "from uselect import "
completions: list[CompletionItem] = json.loads(complete(code, 1, len(code) + 1))
assert [c["insertText"] for c in completions] == [
"poll",
"Poll",
"poll",
"POLLERR",
"POLLHUP",
"POLLIN",
Expand Down

0 comments on commit 87c2802

Please sign in to comment.