File tree Expand file tree Collapse file tree
TransactionProcessor.Mobile.BusinessLogic.Tests/ServicesTests Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -39,10 +39,6 @@ public async Task ConfigurationService_GetConfiguration_ResultSuccess_And_Config
3939 ClientSecret = Guid . NewGuid ( ) . ToString ( ) ,
4040 EnableAutoUpdates = false ,
4141 HostAddresses = new List < HostAddress > {
42- new HostAddress {
43- ServiceType = ServiceType . TransactionProcessor ,
44- Uri = "http://localhost:5001"
45- } ,
4642 new HostAddress {
4743 ServiceType = ServiceType . Security ,
4844 Uri = "http://localhost:5001"
@@ -67,7 +63,6 @@ public async Task ConfigurationService_GetConfiguration_ResultSuccess_And_Config
6763 configurationResult . Data . ClientSecret . ShouldBe ( expectedConfiguration . ClientSecret ) ;
6864 configurationResult . Data . ClientId . ShouldBe ( expectedConfiguration . ClientId ) ;
6965 configurationResult . Data . EnableAutoUpdates . ShouldBe ( expectedConfiguration . EnableAutoUpdates ) ;
70- configurationResult . Data . TransactionProcessorUri . ShouldBe ( expectedConfiguration . HostAddresses . Single ( s => s . ServiceType == ServiceType . TransactionProcessor ) . Uri ) ;
7166 configurationResult . Data . SecurityServiceUri . ShouldBe ( expectedConfiguration . HostAddresses . Single ( s => s . ServiceType == ServiceType . Security ) . Uri ) ;
7267 configurationResult . Data . TransactionProcessorAclUri . ShouldBe ( expectedConfiguration . HostAddresses . Single ( s => s . ServiceType == ServiceType . TransactionProcessorAcl ) . Uri ) ;
7368 configurationResult . Data . LogLevel . ShouldBe ( expectedLogLevel ) ;
You can’t perform that action at this time.
0 commit comments