summaryrefslogtreecommitdiffstats
path: root/tests/lsp_tests/test_lsp_dctrl.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/lsp_tests/test_lsp_dctrl.py')
-rw-r--r--tests/lsp_tests/test_lsp_dctrl.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/lsp_tests/test_lsp_dctrl.py b/tests/lsp_tests/test_lsp_dctrl.py
index 2a2466f..d258e8f 100644
--- a/tests/lsp_tests/test_lsp_dctrl.py
+++ b/tests/lsp_tests/test_lsp_dctrl.py
@@ -39,7 +39,7 @@ def test_dctrl_complete_field(ls: "LanguageServer") -> None:
ls,
CompletionParams(TextDocumentIdentifier(dctrl_uri), cursor_pos),
)
- assert matches
+ assert isinstance(matches, list)
keywords = {m.label for m in matches}
assert "Multi-Arch" in keywords
assert "Architecture" in keywords