Rename parameters in helper functions for clarity and consistency

This commit is contained in:
Harsh Kumar Gupta 2024-12-19 16:30:04 +05:30
parent a0fcfc20ad
commit 8fdd639bf0

View File

@ -59,8 +59,8 @@
}, },
// ---------- // ----------
equalsWithVariance: function (value1, value2, variance) { equalsWithVariance: function (actual, expected, variance) {
return Math.abs(value1 - value2) <= variance; return Math.abs(actual - expected) <= variance;
}, },
// ---------- // ----------