@@ -116,7 +116,7 @@ describe("auth router", () => {
116116 it . each ( allowedLoginUris ) ( `${ displayRouteName (
117117 authRoutes . initiateLoginByOAuth ,
118118 ) } 302 > [ProConnect]/login - 302 > ${ displayRouteName (
119- authRoutes . afterOAuthLogin ,
119+ authRoutes . afterProConnectOAuthLogin ,
120120 ) } 302 > page %s with required connected user params`, async ( page ) => {
121121 const generatedUserId = "my-user-id" ;
122122 const uuids = [ nonce , state , generatedUserId ] ;
@@ -161,7 +161,7 @@ describe("auth router", () => {
161161 } ,
162162 } ) ;
163163
164- const response = await authRoutesClient . afterOAuthLogin ( {
164+ const response = await authRoutesClient . afterProConnectOAuthLogin ( {
165165 queryParams : {
166166 code : authCode ,
167167 state,
@@ -261,7 +261,7 @@ describe("auth router", () => {
261261 } ,
262262 } ) ;
263263
264- const response = await authRoutesClient . afterOAuthLogin ( {
264+ const response = await authRoutesClient . afterProConnectOAuthLogin ( {
265265 queryParams : {
266266 code : authCode ,
267267 state,
@@ -292,7 +292,7 @@ describe("auth router", () => {
292292 it . each ( allowedLoginUris ) ( `${ displayRouteName (
293293 authRoutes . initiateLoginByEmail ,
294294 ) } 200 | EMAIL with connexion link > ${ displayRouteName (
295- authRoutes . afterOAuthLogin ,
295+ authRoutes . afterProConnectOAuthLogin ,
296296 ) } 200 > page %s with required connected user params`, async ( uri ) => {
297297 const email : Email = "mail@email.com" ;
298298 const generatedUserId = "my-user-id" ;
@@ -334,7 +334,7 @@ describe("auth router", () => {
334334 throw new Error (
335335 `missing code on url ${ notification . templatedContent . params . loginLink } ` ,
336336 ) ;
337- const response = await authRoutesClient . afterOAuthLogin ( {
337+ const response = await authRoutesClient . afterProConnectOAuthLogin ( {
338338 queryParams : {
339339 code,
340340 state,
0 commit comments