We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 35a63ae commit 5f88df9Copy full SHA for 5f88df9
src/ServiceControl.Monitoring.AcceptanceTests/When_querying_disconnected_count.cs
@@ -30,8 +30,8 @@ await Define<TestContext>(ctx => context = ctx)
30
.WithServiceResolve((provider, _) =>
31
{
32
var endpointName = Conventions.EndpointNamingConvention(typeof(MonitoredEndpoint));
33
- context.FirstInstance = provider.GetRequiredKeyedService<IEndpointInstance>($"{endpointName}0");
34
- context.SecondInstance = provider.GetRequiredKeyedService<IEndpointInstance>($"{endpointName}0");
+ context.FirstInstance = provider.GetRequiredKeyedService<IEndpointInstance>($"{endpointName}1");
+ context.SecondInstance = provider.GetRequiredKeyedService<IEndpointInstance>($"{endpointName}2");
35
return Task.CompletedTask;
36
})
37
.Done(async c =>
0 commit comments