We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
test_jedi_completion_with_fuzzy_enabled
The failure is:
=================================== FAILURES =================================== ___________________ test_jedi_completion_with_fuzzy_enabled ____________________ config = <pylsp.config.config.Config object at 0x7f3b90f363f0> workspace = <pylsp.workspace.Workspace object at 0x7f3b9129ef30> def test_jedi_completion_with_fuzzy_enabled(config, workspace) -> None: # Over 'i' in os.path.isabs(...) config.update({"plugins": {"jedi_completion": {"fuzzy": True}}}) com_position = {"line": 1, "character": 15} doc = Document(DOC_URI, workspace, DOC) items = pylsp_jedi_completions(config, doc, com_position) assert items expected = "commonprefix(m)" if JEDI_VERSION == "0.18.0": expected = "commonprefix(list)" > assert items[0]["label"] == expected E AssertionError: assert 'isabs(s)' == 'commonprefix(m)' E E - commonprefix(m) E + isabs(s) test/plugins/test_completion.py:185: AssertionError
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The failure is:
The text was updated successfully, but these errors were encountered: