Skip to content

Commit

Permalink
Fix findMany test in accoundIdm service.
Browse files Browse the repository at this point in the history
  • Loading branch information
mkreuzkam-cap committed Dec 18, 2024
1 parent 8d19ebf commit a34c3a8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ export class AccountServiceIdm extends AbstractAccountService {

// eslint-disable-next-line @typescript-eslint/require-await, @typescript-eslint/no-unused-vars
public findMany(_offset: number, _limit: number): Promise<Account[]> {
throw new NotImplementedException();
return Promise.reject(new NotImplementedException());
}

private async getOptionalIdmAccount(accountId: string): Promise<string | undefined> {
Expand Down

0 comments on commit a34c3a8

Please sign in to comment.