util.stanza tests: Remove unused variable #luacheck

This commit is contained in:
Matthew Wild 2018-09-13 16:45:18 +01:00
parent 27d8902b8e
commit 2219abbc3f

View file

@ -92,11 +92,11 @@ describe("util.stanza", function()
it("should reject stanzas with no id", function ()
assert.has.error_match(function ()
local i = st.iq();
st.iq();
end, "id attribute");
assert.has.error_match(function ()
local i = st.iq({ foo = "bar" });
st.iq({ foo = "bar" });
end, "id attribute");
end);
end);