util.stanza: Remove redundant check for attrs

A stanza can't not have attrs if created the correct way
This commit is contained in:
Kim Alvefur 2019-11-25 20:46:55 +01:00
parent b340e5e462
commit 11095184a5
2 changed files with 8 additions and 1 deletions

View file

@ -176,6 +176,13 @@ describe("util.stanza", function()
st.reply(not "a stanza");
end, "expected stanza");
end);
it("should reject not-stanzas", function ()
assert.has.error_match(function ()
st.reply({name="x"});
end, "expected stanza");
end);
end);
describe("#error_reply()", function()

View file

@ -438,7 +438,7 @@ local function reply(orig)
error("bad argument to reply: expected stanza, got "..type(orig));
end
return new_stanza(orig.name,
orig.attr and {
{
to = orig.attr.from,
from = orig.attr.to,
id = orig.attr.id,