Skip to content

Commit b79cc80

Browse files
committed
fix tests
1 parent ffb18aa commit b79cc80

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ var crc = Crc32Helper.CalculateFileCrc(local.FilePath);
178178
logger.LogInformation("Backup CRC for {File} is {Crc}", fileName, crc);
179179
```
180180

181-
The test suite includes end-to-end scenarios that mirror payloads between Azure, AWS, the local file system, and virtual file systems; multi-gigabyte flows execute by default across every provider using 64 MB units per "GB" to keep runs fast while still exercising streaming paths.
181+
The test suite includes end-to-end scenarios that mirror payloads between Azure, AWS, the local file system, and virtual file systems; multi-gigabyte flows execute by default across every provider using 4 MB units per "GB" to keep runs fast while still exercising streaming paths.
182182

183183
## ASP.NET Controllers & SignalR Streaming
184184

Tests/ManagedCode.Storage.Tests/Common/LargeFileTestHelper.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ public static class LargeFileTestHelper
1717
/// Base unit (in bytes) used when synthesising large-file test payloads. Keeps runtime manageable while
1818
/// exercising multi-chunk flows across transports. Equivalent to 64 MB.
1919
/// </summary>
20-
public const long LargeFileUnitBytes = 16L * 1024L * 1024L;
20+
public const long LargeFileUnitBytes = 4L * 1024L * 1024L;
2121

2222
/// <summary>
2323
/// Resolves the byte-length used for a given "gigabyte" unit in large file tests. The multiplier keeps

0 commit comments

Comments
 (0)