From 9091935d773e4a0eb8b57ac1df87334bc9096954 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?H=C3=A5kon=20L=C3=B8vdal?= Date: Mon, 25 Sep 2023 18:53:11 +0200 Subject: [PATCH] Update variable names --- test/nodes/core/function/10-function_spec.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/test/nodes/core/function/10-function_spec.js b/test/nodes/core/function/10-function_spec.js index 7a5f2950b..b903f0732 100644 --- a/test/nodes/core/function/10-function_spec.js +++ b/test/nodes/core/function/10-function_spec.js @@ -1718,13 +1718,13 @@ describe('function node', function() { describe("init function", function() { it('should delay handling messages until init completes', function(done) { - const timeout_ms = 200; + const timeoutMS = 200; // Since helper.load uses process.nextTick timers might occasionally finish // a couple of milliseconds too early, so give some leeway to the check. - const timeout_check_margin = 5; + const timeoutCheckMargin = 5; var flow = [{id:"n1",type:"function",wires:[["n2"]],initialize: ` return new Promise((resolve,reject) => { - setTimeout(resolve, ${timeout_ms}); + setTimeout(resolve, ${timeoutMS}); })`, func:"return msg;" }, @@ -1738,9 +1738,9 @@ describe('function node', function() { receivedMsgs.push(msg) if (receivedMsgs.length === 5) { let deltas = receivedMsgs.map(msg => msg.delta); - var errors = deltas.filter(delta => delta < (timeout_ms - timeout_check_margin)) + var errors = deltas.filter(delta => delta < (timeoutMS - timeoutCheckMargin)) if (errors.length > 0) { - done(new Error(`Message received before init completed - delta values ${JSON.stringify(deltas)} expected to be > ${timeout_ms - timeout_check_margin}`)) + done(new Error(`Message received before init completed - delta values ${JSON.stringify(deltas)} expected to be > ${timeoutMS - timeoutCheckMargin}`)) } else { done(); }