diff --git a/CallbackHandler.IntegrationTests/Common/DockerHelper.cs b/CallbackHandler.IntegrationTests/Common/DockerHelper.cs index b6e6d22..0de5599 100644 --- a/CallbackHandler.IntegrationTests/Common/DockerHelper.cs +++ b/CallbackHandler.IntegrationTests/Common/DockerHelper.cs @@ -16,7 +16,7 @@ namespace CallbackHandler.IntegrationTests.Common { - public class DockerHelper : global::Shared.IntegrationTesting.DockerHelper + public class CallbackHandlerDockerHelper : global::Shared.IntegrationTesting.DockerHelper { public override async Task CreateSubscriptions() { @@ -55,7 +55,7 @@ public async Task StartSystem() DockerServices dockerServices = DockerServices.CallbackHandler | DockerServices.EventStore | DockerServices.SqlServer; - this.TestingContext.DockerHelper = new DockerHelper(); + this.TestingContext.DockerHelper = new CallbackHandlerDockerHelper(); this.TestingContext.DockerHelper.Logger = logger; this.TestingContext.Logger = logger; this.TestingContext.DockerHelper.RequiredDockerServices = dockerServices; @@ -92,7 +92,7 @@ public async Task StopSystem() public class TestingContext { - public DockerHelper DockerHelper { get; set; } + public CallbackHandlerDockerHelper DockerHelper { get; set; } public NlogLogger Logger { get; set; } public List Deposits { get; set; }