From 718bdc49d0781a3ded0d1096182fcda977e98437 Mon Sep 17 00:00:00 2001 From: James Jackson-South Date: Thu, 8 Dec 2022 20:43:31 +1000 Subject: [PATCH] Experiment with a much shorter timeout. --- tests/ImageSharp.Tests/Image/ImageTests.Decode_Cancellation.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/ImageSharp.Tests/Image/ImageTests.Decode_Cancellation.cs b/tests/ImageSharp.Tests/Image/ImageTests.Decode_Cancellation.cs index 543dd28cd..e6dac1472 100644 --- a/tests/ImageSharp.Tests/Image/ImageTests.Decode_Cancellation.cs +++ b/tests/ImageSharp.Tests/Image/ImageTests.Decode_Cancellation.cs @@ -95,7 +95,7 @@ public partial class ImageTests await Assert.ThrowsAnyAsync(async () => { using Image image = await Image.LoadAsync(options, "someFakeFile", cts.Token); - }).WaitAsync(TimeSpan.FromSeconds(30)); + }).WaitAsync(TimeSpan.FromMilliseconds(600)); } } }