diff options
Diffstat (limited to 'test/functional/api')
-rw-r--r-- | test/functional/api/server_requests_spec.lua | 1 | ||||
-rw-r--r-- | test/functional/api/vim_spec.lua | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/test/functional/api/server_requests_spec.lua b/test/functional/api/server_requests_spec.lua index b76c3b9cd6..6fe87a358c 100644 --- a/test/functional/api/server_requests_spec.lua +++ b/test/functional/api/server_requests_spec.lua @@ -8,6 +8,7 @@ local nvim_prog, command, funcs = helpers.nvim_prog, helpers.command, helpers.fu local source, next_message = helpers.source, helpers.next_message local meths = helpers.meths +if helpers.pending_win32(pending) then return end describe('server -> client', function() local cid diff --git a/test/functional/api/vim_spec.lua b/test/functional/api/vim_spec.lua index eb2b06edcb..848935fc0f 100644 --- a/test/functional/api/vim_spec.lua +++ b/test/functional/api/vim_spec.lua @@ -13,7 +13,7 @@ describe('vim_* functions', function() describe('command', function() it('works', function() - local fname = os.tmpname() + local fname = helpers.tmpname() nvim('command', 'new') nvim('command', 'edit '..fname) nvim('command', 'normal itesting\napi') |