From d5d0d9730b02d8947af9015f645a4129c8b36d31 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Serdar=20=C3=96zer?= Date: Fri, 13 Feb 2026 10:21:48 +0100 Subject: [PATCH] fix: file size is increased - it fails some times when the networks is too fast, we increased the size of file to make it not possible to upload in 1sec and expecting it to fail. --- azurebs/integration/assertions.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azurebs/integration/assertions.go b/azurebs/integration/assertions.go index 624d928..a52f785 100644 --- a/azurebs/integration/assertions.go +++ b/azurebs/integration/assertions.go @@ -62,7 +62,7 @@ func AssertPutTimesOut(cliPath string, cfg *config.AZStorageConfig) { defer os.Remove(configPath) //nolint:errcheck const mb = 1024 * 1024 - big := bytes.Repeat([]byte("x"), 250*mb) + big := bytes.Repeat([]byte("x"), 1000*mb) content := MakeContentFile(string(big)) defer os.Remove(content) //nolint:errcheck blob := GenerateRandomString()