Skip to content

Commit

Permalink
TEST: vim_spec: remove special case for Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
blueyed committed Sep 10, 2019
1 parent f137b00 commit 0f02b5e
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions test/functional/api/vim_spec.lua
Original file line number Diff line number Diff line change
Expand Up @@ -83,11 +83,7 @@ describe('API', function()
nvim('command', 'w')
local f = io.open(fname)
ok(f ~= nil)
if is_os('win') then
eq('testing\r\napi\r\n', f:read('*a'))
else
eq('testing\napi\n', f:read('*a'))
end
eq('testing\napi\n', f:read('*a'))
f:close()
os.remove(fname)
end)
Expand Down

0 comments on commit 0f02b5e

Please sign in to comment.