diff --git a/spec/health_spec.lua b/spec/health_spec.lua index 86f83c7..3bf774e 100644 --- a/spec/health_spec.lua +++ b/spec/health_spec.lua @@ -21,7 +21,11 @@ describe('cp.health', 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 health = require('cp.health')