diff options
Diffstat (limited to 'test/crossfile')
-rw-r--r-- | test/crossfile/completion.lua | 2 | ||||
-rw-r--r-- | test/crossfile/hover.lua | 2 | ||||
-rw-r--r-- | test/crossfile/references.lua | 1 |
3 files changed, 3 insertions, 2 deletions
diff --git a/test/crossfile/completion.lua b/test/crossfile/completion.lua index c271f598..79762646 100644 --- a/test/crossfile/completion.lua +++ b/test/crossfile/completion.lua @@ -837,7 +837,7 @@ TEST { kind = CompletionItemKind.Variable, description = [[ ```lua -local z: {} +local z: table ```]] }, } diff --git a/test/crossfile/hover.lua b/test/crossfile/hover.lua index b0cc8c7d..4461e775 100644 --- a/test/crossfile/hover.lua +++ b/test/crossfile/hover.lua @@ -280,7 +280,7 @@ TEST { hover = [[ ```lua global t: { - [1]: integer = 1|2, + [1]: integer = 2, } ```]], } diff --git a/test/crossfile/references.lua b/test/crossfile/references.lua index 9e55c77a..5ab6a18f 100644 --- a/test/crossfile/references.lua +++ b/test/crossfile/references.lua @@ -1,3 +1,4 @@ +---@diagnostic disable: await-in-sync local files = require 'files' local furi = require 'file-uri' local core = require 'core.reference' |