Skip to content

Commit

Permalink
more input
Browse files Browse the repository at this point in the history
  • Loading branch information
qdraw committed Mar 25, 2024
1 parent bf60c31 commit c28518c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public void GetFileName_ReturnsValidFileName()

[TestMethod]
[ExpectedException(typeof(RegexMatchTimeoutException))]
public async Task GetFileName_ReturnsFileName_WithMaliciousInput_UnixOnly()
public async Task GetFileName_ReturnsFileName_WithMaliciousInput()
{
// Act and Assert
var test = await
Expand All @@ -39,7 +39,7 @@ public async Task GetFileName_ReturnsFileName_WithMaliciousInput_UnixOnly()
new MemoryStream(CreateAnImageA6600.Bytes.ToArray()));

var result = string.Empty;
for ( var i = 0; i < 200; i++ )
for ( var i = 0; i < 2000; i++ )
{
result += test + test2 + test + test;
}
Expand Down

0 comments on commit c28518c

Please sign in to comment.