Browse Source

increase timeout

pull/2276/head
Anton Firszov 4 years ago
parent
commit
834f686584
  1. 2
      tests/ImageSharp.Tests/Image/ImageTests.Decode_Cancellation.cs

2
tests/ImageSharp.Tests/Image/ImageTests.Decode_Cancellation.cs

@ -89,7 +89,7 @@ public partial class ImageTests
await Assert.ThrowsAnyAsync<OperationCanceledException>(async () => await Assert.ThrowsAnyAsync<OperationCanceledException>(async () =>
{ {
using Image image = await Image.LoadAsync(options, "someFakeFile", cts.Token); using Image image = await Image.LoadAsync(options, "someFakeFile", cts.Token);
}).WaitAsync(TimeSpan.FromSeconds(10)); }).WaitAsync(TimeSpan.FromSeconds(60));
} }
} }
} }

Loading…
Cancel
Save