Skip to content

Commit

Permalink
Attempt at fixing failing test
Browse files Browse the repository at this point in the history
  • Loading branch information
adams85 committed Feb 18, 2024
1 parent 40ba7b6 commit b495125
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/Acornima.Tests/AstVisitorTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ public class AstVisitorTests
public void ThrowsCatchableExceptionOnTooDeepRecursion()
{
Expression expression = new Identifier("x");
for (int i = 0; i < 100_000; i++)
for (int i = 0; i < 1_000_000; i++)
{
expression = new ParenthesizedExpression(expression);
}
Expand Down

0 comments on commit b495125

Please sign in to comment.