1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 05:17:35 +00:00

LibCpp: Update regressions tests results

The LibCpp regression tests results have to be updated after tweaking
the token end position calculation logic of some token types.
This commit is contained in:
Itamar 2022-02-08 19:13:46 +02:00 committed by Andreas Kling
parent b67a090b79
commit 605becb28b
11 changed files with 202 additions and 198 deletions

View file

@ -138,7 +138,7 @@ void test_complete_includes()
if (suggestions.size() != 1)
FAIL(project include - bad size);
if (suggestions[0].completion != "sample_header.h")
if (suggestions[0].completion != "\"sample_header.h\"")
FAIL("project include - wrong results");
suggestions = autocomplete.get_suggestions("complete_includes.cpp", { 1, 18 });