From 8d1b658cef889c06ade5e73bd5f44a0ef99979a6 Mon Sep 17 00:00:00 2001 From: Louie Farol Date: Mon, 2 Dec 2024 16:48:21 -0800 Subject: [PATCH] Modify test --- .../IntegrationTests/FileUploadDownloadLargeFilesIT.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Snowflake.Data.Tests/IntegrationTests/FileUploadDownloadLargeFilesIT.cs b/Snowflake.Data.Tests/IntegrationTests/FileUploadDownloadLargeFilesIT.cs index f3a284583..53ec880ef 100644 --- a/Snowflake.Data.Tests/IntegrationTests/FileUploadDownloadLargeFilesIT.cs +++ b/Snowflake.Data.Tests/IntegrationTests/FileUploadDownloadLargeFilesIT.cs @@ -13,12 +13,13 @@ namespace Snowflake.Data.Tests { [TestFixture] + [NonParallelizable] public class FileUploadDownloadLargeFilesIT : SFBaseTest { private const string FileName = "large_file_to_test_dotnet_driver.json"; private static readonly string s_uniqueId = TestDataGenarator.NextAlphaNumeric(6); private static readonly string s_localFolderName = Path.Combine(Path.GetTempPath(), s_uniqueId); - private static readonly string s_localFolderWithSpaceName = Path.Combine(Path.GetTempPath(), "folder with space", s_uniqueId); + private static readonly string s_localFolderWithSpaceName = Path.Combine(Path.GetTempPath() + s_uniqueId, "folder with space"); private static readonly string s_remoteFolderName = $"files_to_test_put_get_{s_uniqueId}"; private static readonly string s_remoteFolderWithSpaceName = $"files_to_test_put_get_for_folder_with_space{s_uniqueId}"; private static readonly string s_downloadFolderName = Path.Combine(s_localFolderName, "download");