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
Notes:
sideshowbarker
2024-07-17 18:22:35 +09:00
Author: https://github.com/itamar8910 Commit: https://github.com/SerenityOS/serenity/commit/cdfc530a99 Pull-request: https://github.com/SerenityOS/serenity/pull/12730
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
Reference in a new issue