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 (#110550)
  • Loading branch information
adamsitnik authored Dec 12, 2024
1 parent 2035898 commit c646425
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 c646425

Please sign in to comment.