Skip to content

Commit 194c62e

Browse files
author
Roman Lytvynenko
committed
MC-36978: Invalid Character Customer Account Create DOB
1 parent 269089f commit 194c62e

File tree

1 file changed

+2
-12
lines changed

1 file changed

+2
-12
lines changed

dev/tests/js/jasmine/tests/app/code/Magento/Customer/frontend/js/validation.test.js

Lines changed: 2 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -17,24 +17,14 @@ define([
1717
dataProvider = [
1818
{
1919
format: 'M/d/Y',
20-
date: '9/2/18',
20+
date: '09/2/18',
2121
expects: true
2222
},
2323
{
2424
format: 'M/DD/Y',
25-
date: '9/2/18',
26-
expects: false
27-
},
28-
{
29-
format: 'MM/DD/Y',
30-
date: '09/02/18',
31-
expects: true
32-
},
33-
{
34-
format: 'MM/DD/YYYY',
3525
date: '09/2/18',
3626
expects: false
37-
}
27+
},
3828
];
3929

4030
dataProvider.forEach(function (data) {

0 commit comments

Comments
 (0)