87968: Minor code changes to pass lint

This commit is contained in:
Yura Bondarenko
2022-03-25 12:36:14 +01:00
parent bb51609af9
commit 99c41b9e80
27 changed files with 39 additions and 41 deletions

View File

@@ -33,7 +33,7 @@ export class AuthServiceStub {
return observableOf(authStatus);
} else {
console.log('error');
throw(new Error('Message Error test'));
throw (new Error('Message Error test'));
}
}
@@ -41,7 +41,7 @@ export class AuthServiceStub {
if (token.accessToken === 'token_test') {
return observableOf(EPersonMock._links.self.href);
} else {
throw(new Error('Message Error test'));
throw (new Error('Message Error test'));
}
}