From ef3d39c7f4690c1bd52f9baa6f8e6ca852246bbd Mon Sep 17 00:00:00 2001 From: Barrett Ruth Date: Fri, 19 Sep 2025 18:48:10 -0400 Subject: [PATCH] fix(ci): final testh --- spec/test_render_spec.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spec/test_render_spec.lua b/spec/test_render_spec.lua index 6e29201..f7ace52 100644 --- a/spec/test_render_spec.lua +++ b/spec/test_render_spec.lua @@ -63,8 +63,8 @@ describe('cp.test_render', function() } local result = test_render.render_test_list(test_state) assert.is_true(result[1]:find('^┌') ~= nil) - assert.is_true(result[2]:match('│.*#.*│.*Status.*│.*Time.*│.*Exit Code.*│')) - assert.is_true(result[3]:match('^├')) + assert.is_true(result[2]:find('│.*#.*│.*Status.*│.*Time.*│.*Exit Code.*│') ~= nil) + assert.is_true(result[3]:find('^├') ~= nil) end) it('shows current test with > prefix in table', function()