test: remove skip for 32-bit MSVC (#21030)

We don't support 32-bit windows anymore so it's not needed.
This commit is contained in:
dundargoc 2022-11-14 09:28:30 +01:00 committed by GitHub
parent c4fcde5063
commit 5c5187c6f8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2324,12 +2324,6 @@ describe('API', function()
meths.set_option('isident', '') meths.set_option('isident', '')
end) 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) local function simplify_east_api_node(line, east_api_node)
if east_api_node == NIL then if east_api_node == NIL then
return nil return nil
@ -2526,7 +2520,7 @@ describe('API', function()
end end
end end
require('test.unit.viml.expressions.parser_tests')( require('test.unit.viml.expressions.parser_tests')(
it_maybe_pending, _check_parsing, hl, fmtn) it, _check_parsing, hl, fmtn)
end) end)
describe('nvim_list_uis', function() describe('nvim_list_uis', function()