Skip to content

Commit

Permalink
Fixed incorrect revert.
Browse files Browse the repository at this point in the history
  • Loading branch information
dlemstra committed Nov 18, 2023
1 parent cac0010 commit 740d1ac
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 void ShouldReadFileMultithreadedCorrectly()
public async Task ShouldReadFileMultithreadedCorrectly()
{
if (!Ghostscript.IsAvailable)
return;
Expand All @@ -33,7 +33,7 @@ public void ShouldReadFileMultithreadedCorrectly()

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

Expand Down

0 comments on commit 740d1ac

Please sign in to comment.