Skip to content

Commit

Permalink
Update variable
Browse files Browse the repository at this point in the history
  • Loading branch information
ebbeknudsen committed Dec 16, 2024
1 parent 16330e0 commit 6a4ed6f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions source/B2BApi.AppTests/Fixtures/B2BApiAppFixture.cs
Original file line number Diff line number Diff line change
Expand Up @@ -193,16 +193,16 @@ public async Task InitializeAsync()
.CreateAsync();
LogStopwatch(stopwatch, nameof(IntegrationEventsTopicResource));

var processManagerTopicResource = await ServiceBusResourceProvider
ProcessManagerTopicResource = await ServiceBusResourceProvider
.BuildTopic("process-manager")
.Do(topic => appHostSettings.ProcessEnvironmentVariables
.Add($"{ProcessManagerServiceBusClientOptions.SectionName}__{nameof(ProcessManagerServiceBusClientOptions.TopicName)}", topic.Name))
.AddSubscription("process-manager-subscription")
.CreateAsync();
LogStopwatch(stopwatch, nameof(processManagerTopicResource));
LogStopwatch(stopwatch, nameof(ProcessManagerTopicResource));
await ServiceBusListenerMock.AddTopicSubscriptionListenerAsync(
topicName: processManagerTopicResource.Name,
subscriptionName: processManagerTopicResource.Subscriptions.Single().SubscriptionName);
topicName: ProcessManagerTopicResource.Name,
subscriptionName: ProcessManagerTopicResource.Subscriptions.Single().SubscriptionName);

await ServiceBusResourceProvider
.BuildQueue("edi-inbox")
Expand Down

0 comments on commit 6a4ed6f

Please sign in to comment.