From 51d2076bde46eda2a0ede0729ec52a36058d4259 Mon Sep 17 00:00:00 2001 From: Piotr Bulawa Date: Fri, 12 Jan 2024 16:52:28 +0100 Subject: [PATCH] Change host for tests --- Snowflake.Data.Tests/IntegrationTests/SFConnectionIT.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Snowflake.Data.Tests/IntegrationTests/SFConnectionIT.cs b/Snowflake.Data.Tests/IntegrationTests/SFConnectionIT.cs index c13cd684b..13205c52d 100644 --- a/Snowflake.Data.Tests/IntegrationTests/SFConnectionIT.cs +++ b/Snowflake.Data.Tests/IntegrationTests/SFConnectionIT.cs @@ -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; @@ -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; @@ -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;