mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 21:37:35 +00:00
LanguageServers/Cpp: Fix "complete_includes" language server test
Previously the target result was only a partial completion.
This commit is contained in:
parent
7b42abccf2
commit
cdfc530a99
1 changed files with 1 additions and 1 deletions
|
@ -145,7 +145,7 @@ void test_complete_includes()
|
|||
if (suggestions.size() != 1)
|
||||
FAIL(global include - bad size);
|
||||
|
||||
if (suggestions[0].completion != "cdefs.h")
|
||||
if (suggestions[0].completion != "<sys/cdefs.h>")
|
||||
FAIL("global include - wrong results");
|
||||
|
||||
PASS;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue