Skip to content

Commit

Permalink
Misc cleaning
Browse files Browse the repository at this point in the history
Remove a missed extra parameter given to load_fixture after it
was changed
  • Loading branch information
aaronik committed Dec 19, 2024
1 parent e591604 commit 7b1dfd1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/treewalker/lines_spec.lua
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@ local load_fixture = require("tests.load_fixture")
describe("lines", function()
describe(".get_line", function()
it("gets the line", function()
load_fixture("lua.lua", "lua")
load_fixture("lua.lua")
local line = lines.get_line(3)
assert.equals("local M = {}", line)
end)
end)

describe(".get_indent", function()
it("gets the line", function()
load_fixture("lua.lua", "lua")
load_fixture("lua.lua")
local indent = lines.get_start_col(" local line = lines.get_indent()")
assert.equals(3, indent)
end)
Expand Down

0 comments on commit 7b1dfd1

Please sign in to comment.