File tree Expand file tree Collapse file tree
Applications/Backend/Tests/Integration/Endpoints Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -1075,8 +1075,8 @@ public async Task WhenDeleteClientAudience_ShouldRevokeAudienceSuccessfully()
10751075 var audience1Payload = new AssignClientAudienceScheme { Value = audience1 } ;
10761076 var audience2Payload = new AssignClientAudienceScheme { Value = audience2 } ;
10771077
1078- var x = await httpClient . PostAsJsonAsync ( $ "api/v1/clients/{ client . Id } /audiences", audience1Payload ) ;
1079- var y = await httpClient . PostAsJsonAsync ( $ "api/v1/clients/{ client . Id } /audiences", audience2Payload ) ;
1078+ await httpClient . PostAsJsonAsync ( $ "api/v1/clients/{ client . Id } /audiences", audience1Payload ) ;
1079+ await httpClient . PostAsJsonAsync ( $ "api/v1/clients/{ client . Id } /audiences", audience2Payload ) ;
10801080
10811081 /* act: send DELETE request to revoke first audience */
10821082 var response = await httpClient . DeleteAsync ( $ "api/v1/clients/{ client . Id } /audiences/{ audience1 } ") ;
You can’t perform that action at this time.
0 commit comments