summaryrefslogtreecommitdiff
path: root/server/test
diff options
context:
space:
mode:
author最萌小汐 <sumneko@hotmail.com>2018-11-22 10:26:51 +0800
committer最萌小汐 <sumneko@hotmail.com>2018-11-22 10:26:51 +0800
commit389d4e454e3ba30c3c4f285c4d4f7c4c63faf609 (patch)
tree7b5fc72275bcf28efe6dac029fe182bde5f42a20 /server/test
parent48cdcc1436a81b2890220bae74266d455c6c5dc1 (diff)
downloadlua-language-server-389d4e454e3ba30c3c4f285c4d4f7c4c63faf609.zip
修正字符串bug
Diffstat (limited to 'server/test')
-rw-r--r--server/test/definition/table.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/server/test/definition/table.lua b/server/test/definition/table.lua
index addf0a66..63fbb99e 100644
--- a/server/test/definition/table.lua
+++ b/server/test/definition/table.lua
@@ -46,6 +46,6 @@ t[<?"method"?>]()
TEST [[
local t
-t[<!"method"!>] = 1
-t[<?[==[method]==]?>]()
+t[<!"longString"!>] = 1
+t[<?[==[longString]==]?>]()
]]