From 3354f6dadeb52a6b350d3402fdac01520fd65fea Mon Sep 17 00:00:00 2001 From: ATH Date: Fri, 18 Oct 2024 14:18:04 +0200 Subject: [PATCH] refactor(test): renames the output vars in test; resolves #2583 as per the discussion on the above issue. --- test/helpers/test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/helpers/test.js b/test/helpers/test.js index 033c4c4d..e7da35a0 100644 --- a/test/helpers/test.js +++ b/test/helpers/test.js @@ -65,7 +65,7 @@ // ---------- assessNumericValue: function ( assert, value1, value2, variance, message ) { - assert.ok( Util.equalsWithVariance( value1, value2, variance ), message + " Expected:" + value1 + " Found: " + value2 + " Variance: " + variance ); + assert.ok( Util.equalsWithVariance( value1, value2, variance ), message + " Actual:" + value1 + " Expected: " + value2 + " Variance: " + variance ); }, // ----------