From 571b61ded7ab331443d67d02d7387f885f81d486 Mon Sep 17 00:00:00 2001 From: Barrett Ruth Date: Thu, 18 Sep 2025 23:43:04 -0400 Subject: [PATCH] fix(ci): format --- spec/health_spec.lua | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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')