From 067b3c4a21843e41a1283de522318a59b220039a Mon Sep 17 00:00:00 2001 From: Dknight Date: Sun, 18 Feb 2018 10:36:15 +0200 Subject: [PATCH] Fix typos --- __tests__/isikukood.test.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/__tests__/isikukood.test.js b/__tests__/isikukood.test.js index 167d76e..d090c18 100644 --- a/__tests__/isikukood.test.js +++ b/__tests__/isikukood.test.js @@ -26,7 +26,7 @@ describe('Generated Isikukood', () => { expect(ik.getAge()).toBeTruthy(); expect(ik.getAge() >= 0).toBe(true); }); - it('should return gendre', () => { + it('should return gender', () => { expect(ik.getGender()).toBeDefined(); expect(ik.getGender()).toBeTruthy(); }); @@ -58,7 +58,7 @@ describe('Isikukood 35703150220', () => { it('should validate', () => { expect(ik.validate()).toBe(true); }); - it('should return male as a gendre', () => { + it('should return male as a gender', () => { expect(ik.getGender()).toBe('male'); }); it('should return age correctly', () => { @@ -84,7 +84,7 @@ describe('Isikukood 48709172756', () => { it('should not validate', () => { expect(ik.validate()).toBe(false); }); - it('should return female as a gendre', () => { + it('should return female as a gender', () => { expect(ik.getGender()).toBe('female'); }); it('should return correct age', () => {