We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 62549bd commit 0da8b29Copy full SHA for 0da8b29
projects/angular-auth-oidc-client/src/lib/utils/url/url.service-mock.ts
@@ -50,11 +50,11 @@ export class UrlServiceMock {
50
return of('');
51
}
52
53
- private async createUrlCodeFlowWithSilentRenew(
+ private createUrlCodeFlowWithSilentRenew(
54
configId: string,
55
customParams?: { [key: string]: string | number | boolean },
56
- ): Promise<string> {
57
- return Promise.resolve('');
+ ): Observable<string> {
+ return of('');
58
59
60
getAuthorizeParUrl(request_uri: string): string {
0 commit comments