Skip to content

Commit

Permalink
fix text
Browse files Browse the repository at this point in the history
  • Loading branch information
pwelter34 committed Jul 26, 2024
1 parent e2d2570 commit 6943a52
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion test/FluentCommand.SqlServer.Tests/DatabaseFixture.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
using Azure.Storage.Blobs;

using DotNet.Testcontainers.Builders;

using FluentCommand.Caching;

using Microsoft.Data.SqlClient;
Expand All @@ -20,7 +22,8 @@ public class DatabaseFixture : TestApplicationFixture, IAsyncLifetime
{
private readonly MsSqlContainer _msSqlContainer = new MsSqlBuilder()
.WithImage("mcr.microsoft.com/mssql/server:2022-latest")
.WithPassword("!P@ss0rd")
.WithPassword("Bn87bBYhLjYRj%9zRgUc")
.WithWaitStrategy(Wait.ForUnixContainer().UntilPortIsAvailable(1433))
.Build();

private readonly RedisContainer _redisContainer = new RedisBuilder()
Expand Down
2 changes: 1 addition & 1 deletion test/FluentCommand.SqlServer.Tests/appsettings.github.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"ConnectionStrings": {
"Tracker": "Server=localhost;Database=TrackerGithub;User Id=SA;Password=!P@ssw0rd;TrustServerCertificate=True;"
"Tracker": "Server=localhost;Database=TrackerGithub;User Id=SA;Password=Bn87bBYhLjYRj%9zRgUc;TrustServerCertificate=True;"
}
}

0 comments on commit 6943a52

Please sign in to comment.