util.http: Silence strict luacheck warning in tests

This commit is contained in:
Kim Alvefur 2023-12-09 21:01:49 +01:00
parent a67e816055
commit 9dd7726419

View file

@ -41,6 +41,7 @@ describe("util.http", function()
end);
it("should encode special characters with escaping", function()
-- luacheck: ignore 631
assert.are.equal(http.formencode({ { name = "one two", value = "1"}, { name = "two one&", value = "2" } }), "one+two=1&two+one%26=2", "Form encoded");
end);
end);