Skip to content

Commit

Permalink
Update the example from "Single concept per test"
Browse files Browse the repository at this point in the history
  • Loading branch information
Huei Tan authored Jan 26, 2017
1 parent 471371e commit bfd763a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -1734,7 +1734,7 @@ describe('MakeMomentJSGreatAgain', () => {
date = new MakeMomentJSGreatAgain('1/1/2015');
date.addDays(30);
date.shouldEqual('1/31/2015');
assert.equal('1/31/2015', date);
date = new MakeMomentJSGreatAgain('2/1/2016');
date.addDays(28);
Expand All @@ -1755,7 +1755,7 @@ describe('MakeMomentJSGreatAgain', () => {
it('handles 30-day months', () => {
const date = new MakeMomentJSGreatAgain('1/1/2015');
date.addDays(30);
date.shouldEqual('1/31/2015');
assert.equal('1/31/2015', date);
});
it('handles leap year', () => {
Expand Down

0 comments on commit bfd763a

Please sign in to comment.