Skip to content

Commit

Permalink
fix tests description
Browse files Browse the repository at this point in the history
  • Loading branch information
adlerdias committed Feb 18, 2021
1 parent b1979fa commit 0a87823
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions qunit/tests_date.js
Original file line number Diff line number Diff line change
Expand Up @@ -1075,7 +1075,7 @@ export default function (qunit, Inputmask) {
assert.equal(testmask.value, "30/mm/yyyy", "Result " + testmask.value);
});

qunit.test("leapyear bug - when placeholder is defined to space cant type 29/02 - #2451", function (assert) {
qunit.test("leapyear bug - when placeholder is defined to space cant type 2 after type 20/0 - #2451", function (assert) {
var $fixture = $("#qunit-fixture");
$fixture.append("<input type=\"text\" id=\"testmask\" />");
var testmask = document.getElementById("testmask");
Expand All @@ -1090,7 +1090,7 @@ export default function (qunit, Inputmask) {
assert.equal(testmask.value, "29/02/2012", "Result " + testmask.value);
});

qunit.test("leapyear bug - when placeholder is defined cant type 02 - #2451", function (assert) {
qunit.test("leapyear bug - when placeholder is defined cant type 2 after type 0 - #2451", function (assert) {
var $fixture = $("#qunit-fixture");
$fixture.append("<input type=\"text\" id=\"testmask\" />");
var testmask = document.getElementById("testmask");
Expand Down

0 comments on commit 0a87823

Please sign in to comment.