Skip to content

Commit

Permalink
Correct test data in lowercase tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
aljones15 committed Nov 29, 2023
1 parent eb40e5f commit 5e71895
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/20-dateRegex.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ describe('verifies RFC3339 Dates', function() {
assertValid('9999-01-01T09:37:45Z');
});
it('should verify a date with lowercase time designator', function() {
assertValid('2019-03-26t14:00Z');
assertValid('2019-03-26t14:00:15Z');
});
it('should verify a date with lowercase UTC designator', function() {
assertValid('2019-03-26T14:00z');
assertValid('2019-03-26T14:00:36z');
});
it('should verify 2 digit months starting with 0', function() {
assertValid('2017-09-27T22:07:22.563z');
Expand Down

0 comments on commit 5e71895

Please sign in to comment.