File tree 2 files changed +4
-4
lines changed
ServiceBusRelayHost.Demo.Screen
ServiceBusRelayHost.Tests
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -69,10 +69,10 @@ class Program
69
69
{
70
70
static void Main ( string [ ] args )
71
71
{
72
- var config = new HttpServiceBusConfiguration ( SecretCredentials . ServiceBusCredentials . ServiceBusAddress )
72
+ var config = new HttpServiceBusConfiguration ( SecretCredentials . ServiceBusAddress )
73
73
{
74
74
IssuerName = "owner" ,
75
- IssuerSecret = SecretCredentials . ServiceBusCredentials . Secret
75
+ IssuerSecret = SecretCredentials . Secret
76
76
} ;
77
77
config . Routes . MapHttpRoute ( "default" , "{controller}/{id}" , new { id = RouteParameter . Optional } ) ;
78
78
var server = new HttpServiceBusServer ( config ) ;
Original file line number Diff line number Diff line change @@ -73,8 +73,8 @@ public Task<HttpResponseMessage> Post()
73
73
[ TestFixture ]
74
74
public class IntegrationTests
75
75
{
76
- private readonly string BaseAddress = ServiceBusCredentials . ServiceBusAddress ;
77
- private readonly string Secret = ServiceBusCredentials . Secret ;
76
+ private readonly string BaseAddress = SecretCredentials . ServiceBusAddress ;
77
+ private readonly string Secret = SecretCredentials . Secret ;
78
78
79
79
[ Test ]
80
80
public void When_GET_response_content_is_received ( )
You can’t perform that action at this time.
0 commit comments