We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 70b8c88 commit b0c3672Copy full SHA for b0c3672
tests/Magick.NET.Tests/MagickImageCollectionTests/TheComplexMethod.cs
@@ -2,6 +2,7 @@
2
// Licensed under the Apache License, Version 2.0.
3
4
using System;
5
+using System.Runtime.InteropServices;
6
using ImageMagick;
7
using Xunit;
8
@@ -31,7 +32,7 @@ public void ShouldThrowExceptionWhenSettingsIsNull()
31
32
[Fact]
33
public void ShouldApplyTheOperatorToTheImages()
34
{
- Assert.SkipWhen(TestRuntime.HasFlakyLinuxArm64Result, "Flaky result on Linux arm64.");
35
+ Assert.SkipWhen(Runtime.Architecture == Architecture.Arm64, "Flaky result on Linux and Windows arm64.");
36
37
using var images = new MagickImageCollection();
38
images.Read(Files.RoseSparkleGIF);
0 commit comments