diff --git a/Snowflake.Data.Tests/IntegrationTests/MaxLobSizeIT.cs b/Snowflake.Data.Tests/IntegrationTests/MaxLobSizeIT.cs index d4c6a4a39..1054b28a0 100644 --- a/Snowflake.Data.Tests/IntegrationTests/MaxLobSizeIT.cs +++ b/Snowflake.Data.Tests/IntegrationTests/MaxLobSizeIT.cs @@ -22,8 +22,8 @@ class MaxLobSizeIT : SFBaseTest { private readonly ResultFormat _resultFormat; - //private const int MaxLobSize = (128 * 1024 * 1024); // new max LOB size - private const int MaxLobSize = (16 * 1024 * 1024); // current max LOB size + private const int MaxLobSize = (128 * 1024 * 1024); // new max LOB size + // private const int MaxLobSize = (16 * 1024 * 1024); // current max LOB size private const int LargeSize = (MaxLobSize / 2); private const int MediumSize = (LargeSize / 2); private const int OriginSize = (MediumSize / 2); diff --git a/Snowflake.Data.Tests/IntegrationTests/SFMaxLobSizeSwitchIT.cs b/Snowflake.Data.Tests/IntegrationTests/SFMaxLobSizeSwitchIT.cs index d90f9d0dc..ad0ca2c14 100644 --- a/Snowflake.Data.Tests/IntegrationTests/SFMaxLobSizeSwitchIT.cs +++ b/Snowflake.Data.Tests/IntegrationTests/SFMaxLobSizeSwitchIT.cs @@ -10,7 +10,6 @@ public class SFMaxLobSizeSwitchIT : SFBaseTest private const string SqlSelectLargeString = "select randstr(20000000, random()) as large_str"; [Test] - [Ignore("TODO: Enable when Max LOB size is available on the automated tests environment")] public void TestIncreaseMaxLobSizeParameterSwitchSelect() { using (var conn = new SnowflakeDbConnection(ConnectionString + "poolingEnabled=false"))