mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
spec: Trim trailing whitespace
This commit is contained in:
parent
d03099c7cc
commit
77ec8a1b6e
2 changed files with 2 additions and 2 deletions
|
@ -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)
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue