aboutsummaryrefslogtreecommitdiff
path: root/test/functional/plugin/lsp
diff options
context:
space:
mode:
authorbfredl <bjorn.linse@gmail.com>2024-03-23 20:01:21 +0100
committerGitHub <noreply@github.com>2024-03-23 20:01:21 +0100
commit3d9c028a4ce1557af7f7269968db5dd0c480f270 (patch)
treefa08e1ee69250026610790531336a9dbef0a4aaf /test/functional/plugin/lsp
parent2c1e8f7e96926f70151d737ea32f1e6ff3589263 (diff)
parent0c59771e314d6faaad69676985cd2a11c157ee37 (diff)
downloadrneovim-3d9c028a4ce1557af7f7269968db5dd0c480f270.tar.gz
rneovim-3d9c028a4ce1557af7f7269968db5dd0c480f270.tar.bz2
rneovim-3d9c028a4ce1557af7f7269968db5dd0c480f270.zip
Merge pull request #27980 from bfredl/noignore
refactor(tests): all screen tests should use highlights
Diffstat (limited to 'test/functional/plugin/lsp')
-rw-r--r--test/functional/plugin/lsp/inlay_hint_spec.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/functional/plugin/lsp/inlay_hint_spec.lua b/test/functional/plugin/lsp/inlay_hint_spec.lua
index 864394d7e0..b046a2c509 100644
--- a/test/functional/plugin/lsp/inlay_hint_spec.lua
+++ b/test/functional/plugin/lsp/inlay_hint_spec.lua
@@ -41,12 +41,12 @@ local grid_without_inlay_hints = [[
]]
local grid_with_inlay_hints = [[
- auto add(int a, int b)-> int { return a + b; } |
+ auto add(int a, int b){1:-> int} { return a + b; } |
|
int main() { |
int x = 1; |
int y = 2; |
- return add(a: x,b: y); |
+ return add({1:a:} x,{1:b:} y); |
} |
^} |
|