mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.pubsub: Fix test to account for not using util.error
This commit is contained in:
parent
c175dc8265
commit
25754509f4
1 changed files with 1 additions and 1 deletions
|
@ -108,7 +108,7 @@ describe("util.pubsub", function ()
|
|||
it("fails to publish to a node with differing config", function ()
|
||||
local ok, err = service:publish("node", true, "1", "item 2", { myoption = false });
|
||||
assert.falsy(ok);
|
||||
assert.equals("precondition-not-met", err.pubsub_condition);
|
||||
assert.equals("precondition-not-met", err);
|
||||
end);
|
||||
|
||||
it("allows to publish to a node with differing config when only defaults are suggested", function ()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue