cleanup test case for support of out of order messages

This commit is contained in:
martinb 2020-11-12 18:56:43 +01:00
parent 01b67c692b
commit ccf4e73701
1 changed files with 1 additions and 1 deletions

View File

@ -1647,7 +1647,7 @@ describe('JOIN node', function() {
});
it('should handle msg.parts even if messages are out of order in auto mode if exactly one message has count set', function (done) {
var flow = [{ id: "n1", type: "join", wires: [["n2"]], joiner: "[44]", joinerType: "bin", build: "string", mode: "auto" },
var flow = [{ id: "n1", type: "join", wires: [["n2"]], mode: "auto" },
{ id: "n2", type: "helper" }];
helper.load(joinNode, flow, function () {
var n1 = helper.getNode("n1");