Skip to content

Commit 7ee48e3

Browse files
committed
fix #414 and #493 unit tests
1 parent 1741f93 commit 7ee48e3

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

tests/ParserTests/Issue414/Issue414Test.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ public void Issue414Test()
2323
Check.ThatCode(() =>
2424
{
2525
result = parser.Parse(source);
26-
}).LastsLessThan(1000, TimeUnit.Milliseconds);
26+
}).LastsLessThan(10_000, TimeUnit.Milliseconds);
2727
Check.That(result).IsOkParsing();
2828
}
2929

@@ -43,7 +43,7 @@ public void Issue414ExpressionTest()
4343
Check.ThatCode(() =>
4444
{
4545
result = parser.Parse(source);
46-
}).LastsLessThan(200, TimeUnit.Milliseconds);
46+
}).LastsLessThan(10_000, TimeUnit.Milliseconds);
4747
Check.That(result).IsOkParsing();
4848
}
4949

@@ -63,7 +63,7 @@ public void Issue414AltTest()
6363
Check.ThatCode(() =>
6464
{
6565
result = parser.Parse(source);
66-
}).LastsLessThan(200, TimeUnit.Milliseconds);
66+
}).LastsLessThan(10_000, TimeUnit.Milliseconds);
6767
Check.That(result).IsOkParsing();
6868
}
6969
}

tests/ParserTests/IssuesTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -286,7 +286,7 @@ public static void Issue493Test()
286286
{
287287
var result = parser.Parse(source);
288288
Check.That(result).IsOkParsing();
289-
}).LastsLessThan(200, TimeUnit.Milliseconds);
289+
}).LastsLessThan(10_000, TimeUnit.Milliseconds);
290290

291291
}
292292
}

0 commit comments

Comments
 (0)