Skip to content

Commit

Permalink
smurfffff
Browse files Browse the repository at this point in the history
  • Loading branch information
justinmk committed Jan 4, 2023
1 parent 21e4de3 commit 61753fc
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions test/functional/core/startup_spec.lua
Original file line number Diff line number Diff line change
Expand Up @@ -93,8 +93,9 @@ describe('startup', function()
vim.list_extend(args, nvim_args or {})
vim.list_extend(args, { '-l', (script or 'test/functional/fixtures/startup.lua') })
vim.list_extend(args, lua_args or {})
local out = funcs.system(args, input):gsub('\r\n', '\n')
return eq(dedent(expected), out)
return eq(expected, funcs.system(args, input))
-- local out = funcs.system(args, input):gsub('\r\n', '\n')
-- return eq(dedent(expected), out)
end

it('failure modes', function()
Expand Down

0 comments on commit 61753fc

Please sign in to comment.