Skip to content

Commit

Permalink
Fixed unit test for the pdf coder.
Browse files Browse the repository at this point in the history
  • Loading branch information
dlemstra committed Nov 18, 2023
1 parent da0fa13 commit 8ef262f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/Magick.NET.Tests/Coders/ThePdfCoder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ namespace Magick.NET.Tests;
public partial class ThePdfCoder
{
[Fact]
public async Task ShouldReadFileMultithreadedCorrectly()
public void ShouldReadFileMultithreadedCorrectly()
{
if (!Ghostscript.IsAvailable)
return;
Expand All @@ -33,7 +33,7 @@ public async Task ShouldReadFileMultithreadedCorrectly()

for (var i = 0; i < results.Length; ++i)
{
await results[i];
results[i].Wait();
}
}

Expand Down

0 comments on commit 8ef262f

Please sign in to comment.