Remove deprecated Lua tbl_flatten

This commit is contained in:
Mike Yockey
2025-12-03 17:01:13 -05:00
parent e9b20cafba
commit 7b2d28f801

View File

@@ -7,6 +7,7 @@ return {
'nvim-treesitter/nvim-treesitter', 'nvim-treesitter/nvim-treesitter',
'olimorris/neotest-rspec', 'olimorris/neotest-rspec',
}, },
lazy = true,
config = function() config = function()
local neotest = require('neotest') local neotest = require('neotest')
local rspec = require('neotest-rspec') local rspec = require('neotest-rspec')
@@ -18,9 +19,7 @@ return {
rspec({ rspec({
rspec_cmd = function() rspec_cmd = function()
return vim.tbl_flatten({ return 'bin/rspec'
'bin/rspec',
})
end end
}) })