Skip to content

Commit

Permalink
little changes
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-knozderko committed Apr 26, 2024
1 parent 682b4c8 commit b897c77
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Snowflake.Data.Tests/UnitTests/ConnectionPoolManagerTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ namespace Snowflake.Data.Tests.UnitTests
class ConnectionPoolManagerTest
{
private readonly ConnectionPoolManager _connectionPoolManager = new ConnectionPoolManager();
private const string ConnectionString1 = "database=D1;warehouse=W1;account=A1;user=U1;password=P1;role=R1;minPoolSize=1;";
private const string ConnectionString2 = "database=D2;warehouse=W2;account=A2;user=U2;password=P2;role=R2;minPoolSize=1;";
private const string ConnectionString1 = "db=D1;warehouse=W1;account=A1;user=U1;password=P1;role=R1;minPoolSize=1;";
private const string ConnectionString2 = "db=D2;warehouse=W2;account=A2;user=U2;password=P2;role=R2;minPoolSize=1;";
private readonly SecureString _password = new SecureString();
private static PoolConfig s_poolConfig;

Expand Down Expand Up @@ -187,6 +187,8 @@ public void TestGetPoolingOnManagerLevelAlwaysTrue()

// Assert
Assert.IsTrue(pooling);
Assert.IsTrue(sessionPool1.GetPooling());
Assert.IsFalse(sessionPool2.GetPooling());
}

[Test]
Expand Down

0 comments on commit b897c77

Please sign in to comment.