Skip to content

Commit 62802ff

Browse files
committed
fix(token generator test): codeql
1 parent 4e0252c commit 62802ff

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/tools/token-generator/token-generator.service.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ describe('token-generator', () => {
7979
});
8080

8181
expect(token).toHaveLength(256);
82-
expect(token).toMatch(/^[.,;:!?./\-"'#{([-|\\@)\]=}*+]+$/);
82+
expect(token).toMatch(/^[.,;:!?./\-"'#{([|\\@)\]=}*+]+$/);
8383
});
8484

8585
it('should generate a random string with just letters (case incensitive) with withLowercase and withUppercase', () => {

0 commit comments

Comments
 (0)