From 175dc4c422409502e25083b55ce678ecb134297e Mon Sep 17 00:00:00 2001 From: juggledad Date: Wed, 28 Oct 2020 03:24:43 -0400 Subject: [PATCH] In test 1 changed low and high from numbers to "" which is the new default --- test/function/random/random_spec.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/function/random/random_spec.js b/test/function/random/random_spec.js index ffd119f2..c52841a3 100644 --- a/test/function/random/random_spec.js +++ b/test/function/random/random_spec.js @@ -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(); });