diff --git a/src/libraries/System.Runtime.Numerics/tests/ComplexTests.cs b/src/libraries/System.Runtime.Numerics/tests/ComplexTests.cs index 77ae0f98c8e45..a31df12c12aa1 100644 --- a/src/libraries/System.Runtime.Numerics/tests/ComplexTests.cs +++ b/src/libraries/System.Runtime.Numerics/tests/ComplexTests.cs @@ -1302,12 +1302,11 @@ private static void VerifyPow_Complex_Complex(double realValue, double imaginary VerifyRealImaginaryProperties(result, expectedReal, expectedImaginary); } - [Theory] + [ConditionalTheory(typeof(PlatformDetection), nameof(PlatformDetection.IsNotAndroidX86))] // disabled on Android x86, see https://github.com/dotnet/runtime/issues/37093 [MemberData(nameof(Boundaries_2_TestData))] [MemberData(nameof(Primitives_2_TestData))] [MemberData(nameof(SmallRandom_2_TestData))] [MemberData(nameof(Invalid_2_TestData))] - [ActiveIssue("https://github.com/dotnet/runtime/issues/37093", TestPlatforms.Android)] public static void Reciprocal(double real, double imaginary) { var complex = new Complex(real, imaginary);