Skip to content
This repository has been archived by the owner on Sep 24, 2020. It is now read-only.

Commit

Permalink
Fix issue with date format.
Browse files Browse the repository at this point in the history
  • Loading branch information
ducksoupdev committed Jan 3, 2016
1 parent da227a7 commit 2e76039
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gulp/tests/compile-options.spec.js
Expand Up @@ -16,9 +16,9 @@ describe('Given the compile options', function () {
it('Should format the date as MMM Do, YYYY', function () {
var template = Handlebars.compile(this.html);
var result = template({
date: '2015-09-15'
date: '2015-10-15'
});
expect(result).to.equal('<span>Sep 15th, 2015</span>');
expect(result).to.equal('<span>Oct 15th, 2015</span>');
});
});

Expand Down

0 comments on commit 2e76039

Please sign in to comment.