Skip to content

Commit dd2b9b9

Browse files
committed
Fix utils.read_file tests failing on Windows
1 parent 402c6ab commit dd2b9b9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

spec/utils_spec.lua

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ local utils = require "luacheck.utils"
33
describe("utils", function()
44
describe("read_file", function()
55
it("returns contents of a file", function()
6-
assert.equal("contents\n", utils.read_file("spec/folder/foo"))
6+
assert.match("contents\r?\n", utils.read_file("spec/folder/foo"))
77
end)
88

99
it("removes UTF-8 BOM", function()
10-
assert.equal("foo\nbar\n", utils.read_file("spec/folder/bom"))
10+
assert.match("foo\r?\nbar\r?\n", utils.read_file("spec/folder/bom"))
1111
end)
1212

1313
it("returns nil for non-existent paths", function()

0 commit comments

Comments
 (0)