Skip to content

Commit

Permalink
Modify test
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-ext-simba-lf committed Dec 3, 2024
1 parent 68965c5 commit 8d1b658
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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");
Expand Down

0 comments on commit 8d1b658

Please sign in to comment.