Skip to content

Commit

Permalink
[NRBF] Reduce the most time-consuming test case to avoid timeouts for…
Browse files Browse the repository at this point in the history
… checked builds (dotnet#110550)
  • Loading branch information
adamsitnik authored and hez2010 committed Dec 14, 2024
1 parent 097ed73 commit ab2fa84
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public NonSeekableStream(byte[] buffer) : base(buffer) { }

public static IEnumerable<object[]> GetCanReadArrayOfAnySizeArgs()
{
foreach (int size in new[] { 1, 127, 128, 512_001, 512_001 })
foreach (int size in new[] { 1, 127, 128, 20_001 })
{
yield return new object[] { size, true };
yield return new object[] { size, false };
Expand Down

0 comments on commit ab2fa84

Please sign in to comment.