Skip to content
This repository was archived by the owner on Nov 8, 2022. It is now read-only.

Commit 1539feb

Browse files
committed
Use equal assertion, not equal
1 parent 8f8792f commit 1539feb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/methods.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -612,7 +612,7 @@ function fillFormWithValuesAndExpect(formSelector, inputValues, expected) {
612612
$(formSelector + ' input:eq(' + i + ')').val(inputValues[i]);
613613
}
614614
var actual = $(formSelector).valid();
615-
equals(actual, expected, $.format("Filled inputs of form '{0}' with {1} values ({2})", formSelector, inputValues.length, inputValues.toString()));
615+
equal(actual, expected, $.format("Filled inputs of form '{0}' with {1} values ({2})", formSelector, inputValues.length, inputValues.toString()));
616616

617617
}
618618

0 commit comments

Comments
 (0)