chore: change name of argument

This commit is contained in:
rwaldron 2021-09-24 13:59:02 -04:00
parent 92dad8d640
commit 1feafce8ce
1 changed files with 2 additions and 2 deletions

View File

@ -26,8 +26,8 @@ compareArray.isSameValue = function(a, b) {
return a === b;
};
compareArray.format = function(spreadable) {
return `[${[].map.call(spreadable, String).join(', ')}]`;
compareArray.format = function(thingWithALengthPropertyAndNumericIndices) {
return `[${[].map.call(thingWithALengthPropertyAndNumericIndices, String).join(', ')}]`;
};
assert.compareArray = function(actual, expected, message) {