fix(ci): format
This commit is contained in:
parent
d3414f3b7b
commit
571b61ded7
1 changed files with 5 additions and 1 deletions
|
|
@ -21,7 +21,11 @@ describe('cp.health', function()
|
||||||
})
|
})
|
||||||
|
|
||||||
vim.system = function()
|
vim.system = function()
|
||||||
return { wait = function() return { code = 0, stdout = 'test version\n' } end }
|
return {
|
||||||
|
wait = function()
|
||||||
|
return { code = 0, stdout = 'test version\n' }
|
||||||
|
end,
|
||||||
|
}
|
||||||
end
|
end
|
||||||
|
|
||||||
health = require('cp.health')
|
health = require('cp.health')
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue