From 1fd7fa2a81727f198e82aa06ac07672f348c429b Mon Sep 17 00:00:00 2001 From: Barrett Ruth Date: Sun, 21 Sep 2025 12:27:46 -0400 Subject: [PATCH] fix(ci): expect true --- spec/scraper_spec.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/scraper_spec.lua b/spec/scraper_spec.lua index 40b427b..d2714d3 100644 --- a/spec/scraper_spec.lua +++ b/spec/scraper_spec.lua @@ -425,7 +425,7 @@ describe('cp.scrape', function() assert.is_not_nil(tests_call) assert.is_true(vim.tbl_contains(tests_call.cmd, 'tests')) assert.is_true(vim.tbl_contains(tests_call.cmd, '1001')) - assert.is_false(vim.tbl_contains(tests_call.cmd, 'sorting_and_searching')) + assert.is_true(vim.tbl_contains(tests_call.cmd, 'sorting_and_searching')) end) end)