aboutsummaryrefslogtreecommitdiff
path: root/test/git.spec.ts
diff options
context:
space:
mode:
authorBeau Dobbin <[email protected]>2023-03-06 16:58:52 +0900
committerGitHub <[email protected]>2023-03-06 08:58:52 +0100
commit52a402f9bace9f66cac9c8614333db7bef5ac2b9 (patch)
treefb7002a68dcdb8be1eaf6316ac11049a36807ebe /test/git.spec.ts
parentf948e2e8ccc93b31557f8c65f610f52dff28e2e4 (diff)
downloadfaker-52a402f9bace9f66cac9c8614333db7bef5ac2b9.tar.xz
faker-52a402f9bace9f66cac9c8614333db7bef5ac2b9.zip
chore: fix typo (#1896)
Diffstat (limited to 'test/git.spec.ts')
-rw-r--r--test/git.spec.ts6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/git.spec.ts b/test/git.spec.ts
index 88c864ee..e7fcc37f 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',
});