Skip to content

Commit

Permalink
Fix some SQ
Browse files Browse the repository at this point in the history
  • Loading branch information
oveldman committed Aug 21, 2023
1 parent 8c0952e commit 0cc0440
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public override async ValueTask DisposeAsync()

protected override void PrepareHost()
{
_dockerRunner = new DockerRunner(2);
_dockerRunner = new DockerRunner(3);
_dockerRunner.Start().GetAwaiter().GetResult();
AzureConnectionString = _dockerRunner.GetConnectionString();
}
Expand Down
2 changes: 1 addition & 1 deletion MadWorld/MadWorld.IntegrationTests/Docker/DockerRunner.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ public class DockerRunner
private const string ImageId = "mcr.microsoft.com/azure-storage/azurite";
private const string AzuriteAccountName = "devstoreaccount1";
private const string AzuriteAccountKey = "Eby8vdM02xNOcqFlqUwJPLlmEtlCDXJ1OUzFT50uSRZ6IFsuFq2UVErCz4I6tq/K1SZFPTOtr/KBHBeksoGMGw==";
private readonly int _azuritePortRange = 0;
private readonly int _azuritePortRange;
private string _containerId = string.Empty;

private readonly DockerClient _dockerClient;
Expand Down

0 comments on commit 0cc0440

Please sign in to comment.