diff options
author | dundargoc <33953936+dundargoc@users.noreply.github.com> | 2022-11-14 09:28:30 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-14 16:28:30 +0800 |
commit | 5c5187c6f809c50e2cfd0ba04961ae8e0d2dabd0 (patch) | |
tree | efdc77f41f587c48642076362db3a43a0ce33445 | |
parent | c4fcde5063899ebfbffef266ba75eafe935da593 (diff) | |
download | rneovim-5c5187c6f809c50e2cfd0ba04961ae8e0d2dabd0.tar.gz rneovim-5c5187c6f809c50e2cfd0ba04961ae8e0d2dabd0.tar.bz2 rneovim-5c5187c6f809c50e2cfd0ba04961ae8e0d2dabd0.zip |
test: remove skip for 32-bit MSVC (#21030)
We don't support 32-bit windows anymore so it's not needed.
-rw-r--r-- | test/functional/api/vim_spec.lua | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/test/functional/api/vim_spec.lua b/test/functional/api/vim_spec.lua index 32b7c349b2..7c24f32f74 100644 --- a/test/functional/api/vim_spec.lua +++ b/test/functional/api/vim_spec.lua @@ -2324,12 +2324,6 @@ describe('API', function() meths.set_option('isident', '') end) - local it_maybe_pending = it - if helpers.isCI() and os.getenv('CONFIGURATION') == 'MSVC_32' then - -- For "works with &opt" (flaky on MSVC_32), but not easy to skip alone. #10241 - it_maybe_pending = pending - end - local function simplify_east_api_node(line, east_api_node) if east_api_node == NIL then return nil @@ -2526,7 +2520,7 @@ describe('API', function() end end require('test.unit.viml.expressions.parser_tests')( - it_maybe_pending, _check_parsing, hl, fmtn) + it, _check_parsing, hl, fmtn) end) describe('nvim_list_uis', function() |