diff --git a/test/git.spec.ts b/test/git.spec.ts index 88c864ee570..e7fcc37fb90 100644 --- a/test/git.spec.ts +++ b/test/git.spec.ts @@ -74,7 +74,7 @@ describe('git', () => { } }); - it('should return a random commitEntry with a default end of line charcter of "\r\n"', () => { + it('should return a random commitEntry with a default end of line character of "\r\n"', () => { const commitEntry = faker.git.commitEntry(); const parts = commitEntry.split('\r\n'); @@ -82,7 +82,7 @@ describe('git', () => { expect(parts.length).toBeLessThanOrEqual(7); }); - it('should return a random commitEntry with a configured end of line charcter of "\r\n" with eol = CRLF', () => { + it('should return a random commitEntry with a configured end of line character of "\r\n" with eol = CRLF', () => { const commitEntry = faker.git.commitEntry({ eol: 'CRLF', }); @@ -92,7 +92,7 @@ describe('git', () => { expect(parts.length).toBeLessThanOrEqual(7); }); - it('should return a random commitEntry with a configured end of line charcter of "\n" with eol = LF', () => { + it('should return a random commitEntry with a configured end of line character of "\n" with eol = LF', () => { const commitEntry = faker.git.commitEntry({ eol: 'LF', });