From c1bd19b5e4b89b27946149e855fb10f2f29cba3a Mon Sep 17 00:00:00 2001 From: Juan Martinez Ramirez Date: Tue, 9 Jul 2024 15:35:45 -0600 Subject: [PATCH] Fixed mismatch credential exception message --- Snowflake.Data.Tests/UnitTests/Session/SessionPoolTest.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Snowflake.Data.Tests/UnitTests/Session/SessionPoolTest.cs b/Snowflake.Data.Tests/UnitTests/Session/SessionPoolTest.cs index 14115824e..2c04e4184 100644 --- a/Snowflake.Data.Tests/UnitTests/Session/SessionPoolTest.cs +++ b/Snowflake.Data.Tests/UnitTests/Session/SessionPoolTest.cs @@ -164,7 +164,7 @@ public void TestFailToValidateNotMatchingSecurePassword(string poolPassword, str var thrown = Assert.Throws(() => pool.ValidateSecurePassword(notMatchingSecurePassword)); // assert - Assert.That(thrown.Message, Does.Contain("Could not get a pool because of password mismatch")); + Assert.That(thrown.Message, Does.Contain("Could not get a pool because of credential mismatch")); } } }