diff options
author | 最萌小汐 <sumneko@hotmail.com> | 2021-08-18 16:37:56 +0800 |
---|---|---|
committer | 最萌小汐 <sumneko@hotmail.com> | 2021-08-18 16:37:56 +0800 |
commit | 9d955bee3c8471ecb2babc63be4794118890af14 (patch) | |
tree | 2e8f72701fe3a4655414b24f75a6c1fffe6ab4f4 /test/crossfile | |
parent | 69c0e4c50101ee29ac1459897495d4c1219bb8c8 (diff) | |
download | lua-language-server-9d955bee3c8471ecb2babc63be4794118890af14.zip |
no longer ignore file names case in Windows
Diffstat (limited to 'test/crossfile')
-rw-r--r-- | test/crossfile/definition.lua | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/test/crossfile/definition.lua b/test/crossfile/definition.lua index ebe4dc31..74923183 100644 --- a/test/crossfile/definition.lua +++ b/test/crossfile/definition.lua @@ -155,19 +155,19 @@ TEST { }, } -if require 'bee.platform'.OS == 'Windows' then -TEST { - { - path = 'a.lua', - content = '', - target = {0, 0}, - }, - { - path = 'b.lua', - content = 'require <?"A"?>', - }, -} -end +--if require 'bee.platform'.OS == 'Windows' then +--TEST { +-- { +-- path = 'a.lua', +-- content = '', +-- target = {0, 0}, +-- }, +-- { +-- path = 'b.lua', +-- content = 'require <?"A"?>', +-- }, +--} +--end TEST { { |