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',
'olimorris/neotest-rspec',
},
lazy = true,
config = function()
local neotest = require('neotest')
local rspec = require('neotest-rspec')
@@ -18,9 +19,7 @@ return {
rspec({
rspec_cmd = function()
return vim.tbl_flatten({
'bin/rspec',
})
return 'bin/rspec'
end
})