Skip to content

Commit

Permalink
Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
CKolkey committed Dec 29, 2024
1 parent ac5d04f commit f4eb646
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions spec/filetypes/lua_spec.lua
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ describe("table_constructor", function()
)
end)

it("expanding doesn't change string values", function()
it("expanding doesn't change string values", function()
assert.are.same(
{
"local tbl = {",
Expand All @@ -89,7 +89,10 @@ describe("table_constructor", function()
' d = "-"',
"}",
},
Helper:call({ [[local tbl = { a = 1, b = 2, ['c'] = 3, d = "-" }]] }, { 1, 13 })
Helper:call(
{ [[local tbl = { a = 1, b = 2, ['c'] = 3, d = "-" }]] },
{ 1, 13 }
)
)
end)
end)
Expand Down

0 comments on commit f4eb646

Please sign in to comment.