mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 17:47:44 +00:00
Tests/LibRegex: Decrease the size of the fork chain test
This commit is contained in:
parent
abbe9da255
commit
63523d3836
1 changed files with 1 additions and 1 deletions
|
@ -848,7 +848,7 @@ TEST_CASE(case_insensitive_match)
|
|||
TEST_CASE(extremely_long_fork_chain)
|
||||
{
|
||||
Regex<ECMA262> re("(?:aa)*");
|
||||
auto result = re.match(String::repeated('a', 100'000));
|
||||
auto result = re.match(String::repeated('a', 1000));
|
||||
EXPECT_EQ(result.success, true);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue