bump rbe package for nom and fix test

This commit is contained in:
Dave Conway-Jones 2017-06-13 20:34:01 +01:00
parent 652d857dd6
commit 3add95128d
No known key found for this signature in database
GPG Key ID: 81B04231572A9A2D
2 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
{
"name" : "node-red-node-rbe",
"version" : "0.1.9",
"version" : "0.1.10",
"description" : "A Node-RED node that provides report-by-exception (RBE) and deadband capability.",
"dependencies" : {
},

View File

@ -118,7 +118,7 @@ describe('rbe node', function() {
msg.should.have.a.property("payload", 10);
}
else if (c == 3) {
msg.should.have.a.property("payload", 20);
msg.should.have.a.property("payload", 22);
done();
}
});
@ -129,7 +129,7 @@ describe('rbe node', function() {
n1.emit("input", {payload:8});
n1.emit("input", {payload:10});
n1.emit("input", {payload:15});
n1.emit("input", {payload:20});
n1.emit("input", {payload:22});
});
});