In test 1 changed low and high from numbers to "" which is the new default

This commit is contained in:
juggledad 2020-10-28 03:24:43 -04:00 committed by GitHub
parent 85a74b2e78
commit 175dc4c422
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -21,8 +21,8 @@ describe('random node', function() {
helper.load(testNode, flow, function() {
var n1 = helper.getNode("n1");
//console.log(n1);
n1.should.have.property("low", 1);
n1.should.have.property("high", 10);
n1.should.have.property("low", "");
n1.should.have.property("high", "");
n1.should.have.property("inte", false);
done();
});