Skip to content

Commit

Permalink
Change host for tests
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-pbulawa committed Jan 12, 2024
1 parent b771acb commit 51d2076
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Snowflake.Data.Tests/IntegrationTests/SFConnectionIT.cs
Original file line number Diff line number Diff line change
Expand Up @@ -523,7 +523,7 @@ public void TestConnectionFailFast()
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=docs.microsoft.com;"
string invalidConnectionString = "host=learn.microsoft.com;"
+ "connection_timeout=0;account=testFailFast;user=testFailFast;password=testFailFast;";

conn.ConnectionString = invalidConnectionString;
Expand All @@ -549,7 +549,7 @@ public void TestEnableRetry()
{
using (var conn = new SnowflakeDbConnection())
{
string invalidConnectionString = "host=docs.microsoft.com;"
string invalidConnectionString = "host=learn.microsoft.com;"
+ "connection_timeout=0;account=testFailFast;user=testFailFast;password=testFailFast;disableretry=true;forceretryon404=true";
conn.ConnectionString = invalidConnectionString;

Expand Down Expand Up @@ -1866,7 +1866,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=docs.microsoft.com;"
string invalidConnectionString = "host=learn.microsoft.com;"
+ "connection_timeout=0;account=testFailFast;user=testFailFast;password=testFailFast;";

conn.ConnectionString = invalidConnectionString;
Expand Down

0 comments on commit 51d2076

Please sign in to comment.