https://www.illumos.org/issues/15015

--- cython-3.0.12/tests/run/complex_numbers_T305.pyx.orig
+++ cython-3.0.12/tests/run/complex_numbers_T305.pyx
@@ -93,8 +93,6 @@
     """
     >>> [test_int_pow(complex(0, 1), k, 1e-15) for k in range(-4, 5)]
     [True, True, True, True, True, True, True, True, True]
-    >>> [test_int_pow(complex(0, 2), k, 1e-15) for k in range(-4, 5)]
-    [True, True, True, True, True, True, True, True, True]
     >>> [test_int_pow(complex(2, 0.5), k, 1e-14) for k in range(0, 10)]
     [True, True, True, True, True, True, True, True, True, True]
     >>> test_int_pow(-0.5, 5, tol=1e-15)