We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f2af498 commit 64eee53Copy full SHA for 64eee53
tests/SixLabors.Fonts.Tests/Issues/Issues_484.cs
@@ -7,7 +7,7 @@ public class Issues_484
7
{
8
[Fact]
9
public void Test_Issue_484()
10
- => Parallel.For(0, 2, static _ => Test_Issue_484_Core());
+ => Parallel.For(0, 10, static _ => Test_Issue_484_Core());
11
12
private static void Test_Issue_484_Core()
13
@@ -35,7 +35,7 @@ public void Test_Issue_484_B()
35
FontFamily arialFamily = fontCollection.Get(arial);
36
Font arialFont = arialFamily.CreateFont(12, FontStyle.Regular);
37
38
- Parallel.For(0, 2, _ => Test_Issue_484_Core_B(arialFont));
+ Parallel.For(0, 10, _ => Test_Issue_484_Core_B(arialFont));
39
}
40
41
private static void Test_Issue_484_Core_B(Font font)
0 commit comments