From 3e48444eb9d993507d03d4e02e6cf7e870e03931 Mon Sep 17 00:00:00 2001 From: Quentin Date: Thu, 26 Dec 2024 22:00:19 +0100 Subject: [PATCH] Typo: logout=>log out --- .../src/main/webapp/app/login/login.component.spec.ts.mustache | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/resources/generator/client/angular/security/oauth2/src/main/webapp/app/login/login.component.spec.ts.mustache b/src/main/resources/generator/client/angular/security/oauth2/src/main/webapp/app/login/login.component.spec.ts.mustache index 17f784613cc..6c3445b70ad 100644 --- a/src/main/resources/generator/client/angular/security/oauth2/src/main/webapp/app/login/login.component.spec.ts.mustache +++ b/src/main/resources/generator/client/angular/security/oauth2/src/main/webapp/app/login/login.component.spec.ts.mustache @@ -21,7 +21,7 @@ describe('LoginComponent', () => { oauth2AuthService = TestBed.inject(Oauth2AuthService); }); - it('should logout on click on logout button', () => { + it('should log out on click on logout button', () => { jest.spyOn(oauth2AuthService, 'logout').mockImplementation(); const logoutButton = fixture.debugElement.query(By.css('#btn-logout')).nativeElement as HTMLElement;