From 85dc0f37bc6afde309fab549a41485f577211791 Mon Sep 17 00:00:00 2001 From: Anton Firszov Date: Mon, 12 Dec 2022 22:41:43 +0100 Subject: [PATCH] [Experiment] do not timeout LoadAsync_IsCancellable --- 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 c6cf9f861..d8d9f4fe2 100644 --- a/tests/ImageSharp.Tests/Image/ImageTests.Decode_Cancellation.cs +++ b/tests/ImageSharp.Tests/Image/ImageTests.Decode_Cancellation.cs @@ -92,7 +92,7 @@ public partial class ImageTests await Assert.ThrowsAnyAsync(async () => { using Image image = await Image.LoadAsync(options, "someFakeFile", cts.Token); - }).WaitAsync(TimeSpan.FromSeconds(30)); + }); } } }