fix(ci): expect true

This commit is contained in:
Barrett Ruth 2025-09-21 12:27:46 -04:00
parent 4f31678a29
commit 1fd7fa2a81

View file

@ -425,7 +425,7 @@ describe('cp.scrape', function()
assert.is_not_nil(tests_call) 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, 'tests'))
assert.is_true(vim.tbl_contains(tests_call.cmd, '1001')) 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)
end) end)