Skip to content

Commit

Permalink
Fixed mismatch credential exception message
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-jmartinezramirez committed Jul 22, 2024
1 parent 20190da commit c1bd19b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Snowflake.Data.Tests/UnitTests/Session/SessionPoolTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ public void TestFailToValidateNotMatchingSecurePassword(string poolPassword, str
var thrown = Assert.Throws<Exception>(() => 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"));
}
}
}

0 comments on commit c1bd19b

Please sign in to comment.