From 67543504feb4a99b4c0bb35cabdffa287148189b Mon Sep 17 00:00:00 2001 From: Quentin Date: Thu, 26 Dec 2024 21:45:01 +0100 Subject: [PATCH] Typo: not=>no --- .../src/main/webapp/app/auth/account.service.spec.ts.mustache | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/resources/generator/client/angular/security/jwt/src/main/webapp/app/auth/account.service.spec.ts.mustache b/src/main/resources/generator/client/angular/security/jwt/src/main/webapp/app/auth/account.service.spec.ts.mustache index 2390e76d96..be66d5b6f7 100644 --- a/src/main/resources/generator/client/angular/security/jwt/src/main/webapp/app/auth/account.service.spec.ts.mustache +++ b/src/main/resources/generator/client/angular/security/jwt/src/main/webapp/app/auth/account.service.spec.ts.mustache @@ -124,7 +124,7 @@ describe('Account Service', () => { expect(hasAuthority).toBeFalsy(); }); - it('should return false if user is logged and has not authority', () => { + it('should return false if user is logged and has no authority', () => { service.authenticate(accountWithAuthorities([Authority.USER])); const hasAuthority = service.hasAnyAuthority([Authority.ADMIN]);