@@ -39,7 +39,7 @@ public async Task rp_response_type_code_id_token()
3939 options . Flow = OidcClientOptions . AuthenticationFlow . Hybrid ;
4040
4141 var client = new OidcClient ( options ) ;
42- var result = await client . LoginAsync ( ) ;
42+ var result = await client . LoginAsync ( new LoginRequest ( ) ) ;
4343
4444 result . IsError . Should ( ) . BeFalse ( ) ;
4545 helper . ShowResult ( result ) ;
@@ -55,7 +55,7 @@ public async Task rp_scope_userinfo_claims()
5555 options . Flow = OidcClientOptions . AuthenticationFlow . Hybrid ;
5656
5757 var client = new OidcClient ( options ) ;
58- var result = await client . LoginAsync ( ) ;
58+ var result = await client . LoginAsync ( new LoginRequest ( ) ) ;
5959
6060 result . IsError . Should ( ) . BeFalse ( ) ;
6161 helper . ShowResult ( result ) ;
@@ -72,7 +72,7 @@ public async Task rp_nonce_unless_code_flow()
7272 options . Flow = OidcClientOptions . AuthenticationFlow . Hybrid ;
7373
7474 var client = new OidcClient ( options ) ;
75- var result = await client . LoginAsync ( ) ;
75+ var result = await client . LoginAsync ( new LoginRequest ( ) ) ;
7676
7777 result . IsError . Should ( ) . BeFalse ( ) ;
7878 helper . ShowResult ( result ) ;
@@ -89,7 +89,7 @@ public async Task rp_nonce_invalid()
8989 options . Flow = OidcClientOptions . AuthenticationFlow . Hybrid ;
9090
9191 var client = new OidcClient ( options ) ;
92- var result = await client . LoginAsync ( ) ;
92+ var result = await client . LoginAsync ( new LoginRequest ( ) ) ;
9393
9494 result . IsError . Should ( ) . BeTrue ( ) ;
9595 helper . ShowResult ( result ) ;
@@ -105,7 +105,7 @@ public async Task rp_token_endpoint_client_secret_basic()
105105 options . Flow = OidcClientOptions . AuthenticationFlow . Hybrid ;
106106
107107 var client = new OidcClient ( options ) ;
108- var result = await client . LoginAsync ( ) ;
108+ var result = await client . LoginAsync ( new LoginRequest ( ) ) ;
109109
110110 result . IsError . Should ( ) . BeFalse ( ) ;
111111 helper . ShowResult ( result ) ;
@@ -122,7 +122,7 @@ public async Task rp_id_token_aud()
122122 options . Flow = OidcClientOptions . AuthenticationFlow . Hybrid ;
123123
124124 var client = new OidcClient ( options ) ;
125- var result = await client . LoginAsync ( ) ;
125+ var result = await client . LoginAsync ( new LoginRequest ( ) ) ;
126126
127127 result . IsError . Should ( ) . BeTrue ( ) ;
128128 helper . ShowResult ( result ) ;
@@ -139,7 +139,7 @@ public async Task rp_id_token_kid_absent_single_jwks()
139139 options . Flow = OidcClientOptions . AuthenticationFlow . Hybrid ;
140140
141141 var client = new OidcClient ( options ) ;
142- var result = await client . LoginAsync ( ) ;
142+ var result = await client . LoginAsync ( new LoginRequest ( ) ) ;
143143
144144 result . IsError . Should ( ) . BeFalse ( ) ;
145145 helper . ShowResult ( result ) ;
@@ -156,7 +156,7 @@ public async Task rp_id_token_bad_c_hash()
156156 options . Flow = OidcClientOptions . AuthenticationFlow . Hybrid ;
157157
158158 var client = new OidcClient ( options ) ;
159- var result = await client . LoginAsync ( ) ;
159+ var result = await client . LoginAsync ( new LoginRequest ( ) ) ;
160160
161161 result . IsError . Should ( ) . BeTrue ( ) ;
162162 helper . ShowResult ( result ) ;
@@ -173,7 +173,7 @@ public async Task rp_id_token_issuer_mismatch()
173173 options . Flow = OidcClientOptions . AuthenticationFlow . Hybrid ;
174174
175175 var client = new OidcClient ( options ) ;
176- var result = await client . LoginAsync ( ) ;
176+ var result = await client . LoginAsync ( new LoginRequest ( ) ) ;
177177
178178 result . IsError . Should ( ) . BeTrue ( ) ;
179179 helper . ShowResult ( result ) ;
@@ -192,7 +192,7 @@ public async Task rp_id_token_kid_absent_multiple_jwks()
192192 options . Flow = OidcClientOptions . AuthenticationFlow . Hybrid ;
193193
194194 var client = new OidcClient ( options ) ;
195- var result = await client . LoginAsync ( ) ;
195+ var result = await client . LoginAsync ( new LoginRequest ( ) ) ;
196196
197197 result . IsError . Should ( ) . BeFalse ( ) ;
198198 helper . ShowResult ( result ) ;
@@ -209,7 +209,7 @@ public async Task rp_id_token_bad_sig_rs256()
209209 options . Flow = OidcClientOptions . AuthenticationFlow . Hybrid ;
210210
211211 var client = new OidcClient ( options ) ;
212- var result = await client . LoginAsync ( ) ;
212+ var result = await client . LoginAsync ( new LoginRequest ( ) ) ;
213213
214214 result . IsError . Should ( ) . BeTrue ( ) ;
215215 helper . ShowResult ( result ) ;
@@ -226,7 +226,7 @@ public async Task rp_id_token_iat()
226226 options . Flow = OidcClientOptions . AuthenticationFlow . Hybrid ;
227227
228228 var client = new OidcClient ( options ) ;
229- var result = await client . LoginAsync ( ) ;
229+ var result = await client . LoginAsync ( new LoginRequest ( ) ) ;
230230
231231 result . IsError . Should ( ) . BeTrue ( ) ;
232232 helper . ShowResult ( result ) ;
@@ -243,7 +243,7 @@ public async Task rp_id_token_sig_rs256()
243243 options . Flow = OidcClientOptions . AuthenticationFlow . Hybrid ;
244244
245245 var client = new OidcClient ( options ) ;
246- var result = await client . LoginAsync ( ) ;
246+ var result = await client . LoginAsync ( new LoginRequest ( ) ) ;
247247
248248 result . IsError . Should ( ) . BeFalse ( ) ;
249249 helper . ShowResult ( result ) ;
@@ -260,7 +260,7 @@ public async Task rp_id_token_sub()
260260 options . Flow = OidcClientOptions . AuthenticationFlow . Hybrid ;
261261
262262 var client = new OidcClient ( options ) ;
263- var result = await client . LoginAsync ( ) ;
263+ var result = await client . LoginAsync ( new LoginRequest ( ) ) ;
264264
265265 result . IsError . Should ( ) . BeTrue ( ) ;
266266 helper . ShowResult ( result ) ;
@@ -277,7 +277,7 @@ public async Task rp_userinfo_bad_sub_claim()
277277 options . Flow = OidcClientOptions . AuthenticationFlow . Hybrid ;
278278
279279 var client = new OidcClient ( options ) ;
280- var result = await client . LoginAsync ( ) ;
280+ var result = await client . LoginAsync ( new LoginRequest ( ) ) ;
281281
282282 result . IsError . Should ( ) . BeTrue ( ) ;
283283 helper . ShowResult ( result ) ;
@@ -294,7 +294,7 @@ public async Task rp_userinfo_bearer_header()
294294 options . Flow = OidcClientOptions . AuthenticationFlow . Hybrid ;
295295
296296 var client = new OidcClient ( options ) ;
297- var result = await client . LoginAsync ( ) ;
297+ var result = await client . LoginAsync ( new LoginRequest ( ) ) ;
298298
299299 result . IsError . Should ( ) . BeFalse ( ) ;
300300 helper . ShowResult ( result ) ;
0 commit comments