fix(picker): rename picker function names

This commit is contained in:
Barrett Ruth 2025-09-30 20:27:31 -04:00
parent a7cd41712d
commit 5588eae526
5 changed files with 27 additions and 118 deletions

View file

@ -69,10 +69,10 @@ describe('cp.telescope', function()
end)
end)
it('returns module with platform_picker function', function()
it('returns module with picker function', function()
local telescope_cp = require('cp.pickers.telescope')
assert.is_table(telescope_cp)
assert.is_function(telescope_cp.platform_picker)
assert.is_function(telescope_cp.picker)
end)
end)
end)