From 834f6865847d787221593a70515af6d262fbc08d Mon Sep 17 00:00:00 2001 From: Anton Firszov Date: Wed, 7 Dec 2022 03:20:27 +0100 Subject: [PATCH] increase 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 928f21a5f2..9e97854003 100644 --- a/tests/ImageSharp.Tests/Image/ImageTests.Decode_Cancellation.cs +++ b/tests/ImageSharp.Tests/Image/ImageTests.Decode_Cancellation.cs @@ -89,7 +89,7 @@ public partial class ImageTests await Assert.ThrowsAnyAsync(async () => { using Image image = await Image.LoadAsync(options, "someFakeFile", cts.Token); - }).WaitAsync(TimeSpan.FromSeconds(10)); + }).WaitAsync(TimeSpan.FromSeconds(60)); } } }