Skip to content

Commit

Permalink
Increase number of iterations since .NET 7.0 seems to be just a littl…
Browse files Browse the repository at this point in the history
…e bit too fast for this test.
  • Loading branch information
andrerav committed Mar 4, 2023
1 parent b3b73c8 commit 00d32e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Mapster.Tests/WhenRegisteringAndMappingRace.cs
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ public void Explicit_Mapping_Requirement_Throws_Before_Mapping_Attempted()

Should.Throw<AggregateException>(() =>
{
for (int i = 0; i < 100; i++)
for (int i = 0; i < 1000; i++)
{
Parallel.Invoke(
() =>
Expand Down

0 comments on commit 00d32e5

Please sign in to comment.