This repository was archived by the owner on Dec 24, 2020. It is now read-only.
File tree Expand file tree Collapse file tree 5 files changed +21
-21
lines changed
AspNet.Security.OAuth.Introspection.Tests
AspNet.Security.OAuth.Validation.Tests
Owin.Security.OAuth.Introspection.Tests
Owin.Security.OAuth.Validation.Tests Expand file tree Collapse file tree 5 files changed +21
-21
lines changed Original file line number Diff line number Diff line change 7
7
<JetBrainsVersion >10.3.0</JetBrainsVersion >
8
8
<JsonNetVersion >9.0.1</JsonNetVersion >
9
9
<NetStandardImplicitPackageVersion >1.6.0</NetStandardImplicitPackageVersion >
10
- <MoqVersion >4.7.8 </MoqVersion >
10
+ <MoqVersion >4.7.63 </MoqVersion >
11
11
<OwinVersion >3.0.1</OwinVersion >
12
12
<RuntimeFrameworkVersion >1.0.0</RuntimeFrameworkVersion >
13
13
<TestSdkVersion >15.0.0</TestSdkVersion >
Original file line number Diff line number Diff line change @@ -602,11 +602,11 @@ public async Task HandleUnauthorizedAsync_ErrorDetailsAreResolvedFromChallengeCo
602
602
options . Events . OnApplyChallenge = context =>
603
603
{
604
604
// Assert
605
- Assert . Equal ( context . Error , "custom_error" ) ;
606
- Assert . Equal ( context . ErrorDescription , "custom_error_description" ) ;
607
- Assert . Equal ( context . ErrorUri , "custom_error_uri" ) ;
608
- Assert . Equal ( context . Realm , "custom_realm" ) ;
609
- Assert . Equal ( context . Scope , "custom_scope" ) ;
605
+ Assert . Equal ( "custom_error" , context . Error ) ;
606
+ Assert . Equal ( "custom_error_description" , context . ErrorDescription ) ;
607
+ Assert . Equal ( "custom_error_uri" , context . ErrorUri ) ;
608
+ Assert . Equal ( "custom_realm" , context . Realm ) ;
609
+ Assert . Equal ( "custom_scope" , context . Scope ) ;
610
610
611
611
return Task . FromResult ( 0 ) ;
612
612
} ;
Original file line number Diff line number Diff line change @@ -535,11 +535,11 @@ public async Task HandleUnauthorizedAsync_ErrorDetailsAreResolvedFromChallengeCo
535
535
options . Events . OnApplyChallenge = context =>
536
536
{
537
537
// Assert
538
- Assert . Equal ( context . Error , "custom_error" ) ;
539
- Assert . Equal ( context . ErrorDescription , "custom_error_description" ) ;
540
- Assert . Equal ( context . ErrorUri , "custom_error_uri" ) ;
541
- Assert . Equal ( context . Realm , "custom_realm" ) ;
542
- Assert . Equal ( context . Scope , "custom_scope" ) ;
538
+ Assert . Equal ( "custom_error" , context . Error ) ;
539
+ Assert . Equal ( "custom_error_description" , context . ErrorDescription ) ;
540
+ Assert . Equal ( "custom_error_uri" , context . ErrorUri ) ;
541
+ Assert . Equal ( "custom_realm" , context . Realm ) ;
542
+ Assert . Equal ( "custom_scope" , context . Scope ) ;
543
543
544
544
return Task . FromResult ( 0 ) ;
545
545
} ;
Original file line number Diff line number Diff line change @@ -584,11 +584,11 @@ public async Task HandleUnauthorizedAsync_ErrorDetailsAreResolvedFromChallengeCo
584
584
options . Events . OnApplyChallenge = context =>
585
585
{
586
586
// Assert
587
- Assert . Equal ( context . Error , "custom_error" ) ;
588
- Assert . Equal ( context . ErrorDescription , "custom_error_description" ) ;
589
- Assert . Equal ( context . ErrorUri , "custom_error_uri" ) ;
590
- Assert . Equal ( context . Realm , "custom_realm" ) ;
591
- Assert . Equal ( context . Scope , "custom_scope" ) ;
587
+ Assert . Equal ( "custom_error" , context . Error ) ;
588
+ Assert . Equal ( "custom_error_description" , context . ErrorDescription ) ;
589
+ Assert . Equal ( "custom_error_uri" , context . ErrorUri ) ;
590
+ Assert . Equal ( "custom_realm" , context . Realm ) ;
591
+ Assert . Equal ( "custom_scope" , context . Scope ) ;
592
592
593
593
return Task . FromResult ( 0 ) ;
594
594
} ;
Original file line number Diff line number Diff line change @@ -519,11 +519,11 @@ public async Task HandleUnauthorizedAsync_ErrorDetailsAreResolvedFromChallengeCo
519
519
options . Events . OnApplyChallenge = context =>
520
520
{
521
521
// Assert
522
- Assert . Equal ( context . Error , "custom_error" ) ;
523
- Assert . Equal ( context . ErrorDescription , "custom_error_description" ) ;
524
- Assert . Equal ( context . ErrorUri , "custom_error_uri" ) ;
525
- Assert . Equal ( context . Realm , "custom_realm" ) ;
526
- Assert . Equal ( context . Scope , "custom_scope" ) ;
522
+ Assert . Equal ( "custom_error" , context . Error ) ;
523
+ Assert . Equal ( "custom_error_description" , context . ErrorDescription ) ;
524
+ Assert . Equal ( "custom_error_uri" , context . ErrorUri ) ;
525
+ Assert . Equal ( "custom_realm" , context . Realm ) ;
526
+ Assert . Equal ( "custom_scope" , context . Scope ) ;
527
527
528
528
return Task . FromResult ( 0 ) ;
529
529
} ;
You can’t perform that action at this time.
0 commit comments