summaryrefslogtreecommitdiff
path: root/test/completion
diff options
context:
space:
mode:
author最萌小汐 <sumneko@hotmail.com>2022-04-19 01:08:17 +0800
committer最萌小汐 <sumneko@hotmail.com>2022-04-19 01:08:17 +0800
commit8a2cab337274c92913c2f60c57e756c10ac72d72 (patch)
treecdc24cf324003cdde0e8174e3b9a83c36e915fa6 /test/completion
parent7657fefe4ab5b6ba7dcb7df7e766c115afa25787 (diff)
downloadlua-language-server-8a2cab337274c92913c2f60c57e756c10ac72d72.zip
Revert "fix #3.1.1"
This reverts commit 7657fefe4ab5b6ba7dcb7df7e766c115afa25787.
Diffstat (limited to 'test/completion')
-rw-r--r--test/completion/common.lua13
1 files changed, 0 insertions, 13 deletions
diff --git a/test/completion/common.lua b/test/completion/common.lua
index 1fc37bb5..538ac401 100644
--- a/test/completion/common.lua
+++ b/test/completion/common.lua
@@ -3311,16 +3311,3 @@ TEST [[
end
assert(count == 1)
end)
-
-TEST [[
-local x
-x.y.z = xxx
-
-x.y.<??>
-]]
-{
- {
- label = 'z',
- kind = define.CompletionItemKind.Field,
- }
-}