Skip to content

Commit

Permalink
Fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
dknight committed Feb 18, 2018
1 parent 393fd62 commit 067b3c4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions __tests__/isikukood.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -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();
});
Expand Down Expand Up @@ -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', () => {
Expand All @@ -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', () => {
Expand Down

0 comments on commit 067b3c4

Please sign in to comment.