diff --git a/.docker/docker-compose.yml b/.docker/docker-compose.yml index 0c10fa0..a8dd7bd 100644 --- a/.docker/docker-compose.yml +++ b/.docker/docker-compose.yml @@ -14,7 +14,7 @@ services: environment: POSTGRES_USER: 'postgres' - POSTGRES_PASSWORD: 'postgres' + POSTGRES_PASSWORD: 'Password12!' POSTGRES_DB: 'postgres' mysql: diff --git a/tests/Integration/ConnectionContextTests.cs b/tests/Integration/ConnectionContextTests.cs index 3dd7aa3..a50dbd8 100644 --- a/tests/Integration/ConnectionContextTests.cs +++ b/tests/Integration/ConnectionContextTests.cs @@ -22,7 +22,7 @@ public static IEnumerable GetConnectionData() string postgresConnEnv = Environment.GetEnvironmentVariable("Postgres_Connection"); if (string.IsNullOrEmpty(postgresConnEnv)) - postgresConnEnv = "Server=localhost;Port=5432;Database=postgres;Username=postgres;Password=Password12;"; + postgresConnEnv = "Server=localhost;Port=5432;Database=postgres;Username=postgres;Password=Password12!;"; string mysqlConnEnv = Environment.GetEnvironmentVariable("MySql_Connection"); if (string.IsNullOrEmpty(mysqlConnEnv))