LanguageServers/Cpp: Fix "complete_includes" language server test

Previously the target result was only a partial completion.
This commit is contained in:
Itamar 2022-02-22 20:14:32 +02:00 committed by Linus Groh
parent 7b42abccf2
commit cdfc530a99
Notes: sideshowbarker 2024-07-17 18:22:35 +09:00

View file

@ -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;