Skip to content

Commit

Permalink
Fix failures on mac
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-mhofman committed Feb 19, 2024
1 parent 1a7d139 commit 7c94eda
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Snowflake.Data.Tests/IntegrationTests/SFConnectionIT.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1841,7 +1841,7 @@ public void TestAsyncLoginTimeout()
{
using (var conn = new MockSnowflakeDbConnection())
{
int timeoutSec = 5;
int timeoutSec = 15;
string loginTimeOut5sec = String.Format(ConnectionString + "connection_timeout={0};maxHttpRetries=0",
timeoutSec);
conn.ConnectionString = loginTimeOut5sec;
Expand Down Expand Up @@ -1951,7 +1951,7 @@ public void TestAsyncConnectionFailFast()
using (var conn = new SnowflakeDbConnection())
{
// Just a way to get a 404 on the login request and make sure there are no retry
string invalidConnectionString = "host=learn.microsoft.com;"
string invalidConnectionString = "host=learn.microsoft.com/force404"
+ "connection_timeout=0;account=testFailFast;user=testFailFast;password=testFailFast;";

conn.ConnectionString = invalidConnectionString;
Expand Down

0 comments on commit 7c94eda

Please sign in to comment.