From afaa699ad134313c2010b27d139b46c2eabff0fe Mon Sep 17 00:00:00 2001 From: Cody Loyd Date: Wed, 25 Oct 2017 11:52:28 -0500 Subject: [PATCH] Update leapYears.spec.js --- leapYears/leapYears.spec.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/leapYears/leapYears.spec.js b/leapYears/leapYears.spec.js index 41ec0a4..b58dadb 100644 --- a/leapYears/leapYears.spec.js +++ b/leapYears/leapYears.spec.js @@ -2,7 +2,7 @@ var leapYears = require('./leapYears') describe('leapYears', function() { it('works with non century years', function() { - expect(leapYears(1994)).toEqual(true); + expect(leapYears(1996)).toEqual(true); }); xit('works with non century years', function() { expect(leapYears(1997)).toEqual(false); @@ -14,7 +14,7 @@ describe('leapYears', function() { expect(leapYears(1900)).toEqual(false); }); xit('works with century years', function() { - expect(leapYears(1400)).toEqual(true); + expect(leapYears(1600)).toEqual(true); }); xit('works with century years', function() { expect(leapYears(700)).toEqual(false);