1
0
mirror of https://github.com/node-red/node-red.git synced 2023-10-10 13:36:53 +02:00

Fix template test

This commit is contained in:
Nick O'Leary 2016-01-04 15:39:32 +00:00
parent 231adac6d8
commit aed89d82fb

View File

@ -68,7 +68,7 @@ describe('template node', function() {
msg.topic.foo.should.have.a.property('bar', 'payload=foo');
done();
});
n1.receive({payload:{doh:{rei:{me:"foo"}}}, topic:"bar"});
n1.receive({payload:{doh:{rei:{me:"foo"}}}});
});
});