diff options
author | zeertzjq <zeertzjq@outlook.com> | 2024-03-20 08:02:50 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-20 08:02:50 +0800 |
commit | 9765efb40f57b543d9fea610fb0d0f05b8387454 (patch) | |
tree | 2f3e279fe587f81940bbb094cc5e4acf5838a468 /test/functional/ui/messages_spec.lua | |
parent | 37db3d97ea49fd1e22d50dd21e8924ed047cba95 (diff) | |
download | rneovim-9765efb40f57b543d9fea610fb0d0f05b8387454.tar.gz rneovim-9765efb40f57b543d9fea610fb0d0f05b8387454.tar.bz2 rneovim-9765efb40f57b543d9fea610fb0d0f05b8387454.zip |
test(ui/messages_spec): unskip msg_puts_printf test on Unix CI (#27941)
It no longer fails on Unix CI.
Diffstat (limited to 'test/functional/ui/messages_spec.lua')
-rw-r--r-- | test/functional/ui/messages_spec.lua | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/test/functional/ui/messages_spec.lua b/test/functional/ui/messages_spec.lua index 32d3359a0b..78f61968e5 100644 --- a/test/functional/ui/messages_spec.lua +++ b/test/functional/ui/messages_spec.lua @@ -19,7 +19,6 @@ local poke_eventloop = helpers.poke_eventloop local assert_alive = helpers.assert_alive local retry = helpers.retry local is_os = helpers.is_os -local is_ci = helpers.is_ci local fn = helpers.fn local skip = helpers.skip @@ -1849,16 +1848,12 @@ describe('ui/msg_puts_printf', function() pending('missing japanese language features', function() end) return else - cmd = 'chcp 932 > NULL & ' + cmd = 'chcp 932 > NUL & ' end else if exc_exec('lang ja_JP.UTF-8') ~= 0 then pending('Locale ja_JP.UTF-8 not supported', function() end) return - elseif is_ci() then - -- Fails non--Windows CI. Message catalog directory issue? - pending('fails on unix CI', function() end) - return end end |