[clangd] Fix a typo , => ; in hovertest.

I somehow missed it.
This commit is contained in:
Haojian Wu 2022-01-27 22:19:09 +01:00
parent 4beba3a32a
commit 15dfe7a3f1
1 changed files with 2 additions and 1 deletions

View File

@ -1251,7 +1251,8 @@ TEST(Hover, All) {
} Cases[] = {
{"auto x = [['^A']]; // character literal",
[](HoverInfo &HI) {
HI.Name = "expression", HI.Type = "char";
HI.Name = "expression";
HI.Type = "char";
HI.Value = "65 (0x41)";
}},
{