spec: Trim trailing whitespace

This commit is contained in:
Kim Alvefur 2018-03-06 06:27:20 +01:00
parent d03099c7cc
commit 77ec8a1b6e
2 changed files with 2 additions and 2 deletions

View file

@ -70,7 +70,7 @@ describe("core.moduleapi", function()
it("should return handle arrays", function()
test_option_value({1, 2, 3}, { boolean = true, string = "1", number = 1, array = {1, 2, 3}, set = {1, 2, 3} });
test_option_value({1, 2, 3, 3, 4}, {boolean = true, string = "1", number = 1, array = {1, 2, 3, 3, 4}, set = {1, 2, 3, 4} });
test_option_value({0, 1, 2, 3}, { boolean = false, string = "0", number = 0, array = {0, 1, 2, 3}, set = {0, 1, 2, 3} });
test_option_value({0, 1, 2, 3}, { boolean = false, string = "0", number = 0, array = {0, 1, 2, 3}, set = {0, 1, 2, 3} });
end);
end)
end)

View file

@ -64,7 +64,7 @@ describe("util.json", function()
for name, content in pairs(invalid_data) do
local parsed, err = json.decode(content);
assert(not parsed, name..": "..tostring(err));
end
end
end);
end)
end);