From 416b13571e610e6880baf056219b5e6bda344d3a Mon Sep 17 00:00:00 2001 From: hitenjain14 Date: Thu, 26 Sep 2024 10:42:50 +0530 Subject: [PATCH] increase size --- tests/cli_tests/zboxcli_file_delete_test.go | 2 +- tests/cli_tests/zboxcli_file_download_test.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/cli_tests/zboxcli_file_delete_test.go b/tests/cli_tests/zboxcli_file_delete_test.go index 414e0277fb..9f5bd54c3d 100644 --- a/tests/cli_tests/zboxcli_file_delete_test.go +++ b/tests/cli_tests/zboxcli_file_delete_test.go @@ -410,7 +410,7 @@ func TestFileDelete(testSetup *testing.T) { }) t.RunWithTimeout("Delete file concurrently in existing directory, should work", 5*time.Minute, func(t *test.SystemTest) { // TODO: slow - const allocSize int64 = 2048 + const allocSize int64 = 64 * KB * 2 * 2 const fileSize int64 = 256 allocationID := setupAllocation(t, configPath, map[string]interface{}{ diff --git a/tests/cli_tests/zboxcli_file_download_test.go b/tests/cli_tests/zboxcli_file_download_test.go index 4b7c567f45..4b0a409da3 100644 --- a/tests/cli_tests/zboxcli_file_download_test.go +++ b/tests/cli_tests/zboxcli_file_download_test.go @@ -66,7 +66,7 @@ func TestDownload(testSetup *testing.T) { }) t.RunWithTimeout("Download File Concurrently Should Work from two Different Directory", 6*time.Minute, func(t *test.SystemTest) { - allocSize := int64(64 * KB * 2) + allocSize := int64(64 * KB * 4) filesize := int64(1024) remoteFilePaths := [2]string{"/dir1/", "/dir2/"}