From 5f488eef7363600654f5a5bfaa53103b887eca05 Mon Sep 17 00:00:00 2001 From: James Jackson-South Date: Thu, 8 Dec 2022 20:55:51 +1000 Subject: [PATCH] Revert "Experiment with a much shorter timeout." This reverts commit 718bdc49d0781a3ded0d1096182fcda977e98437. --- 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 e6dac1472..543dd28cd 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.FromMilliseconds(600)); + }).WaitAsync(TimeSpan.FromSeconds(30)); } } }