diff --git a/tests/test_2596_named_axis.py b/tests/test_2596_named_axis.py index 3f7ec17a98..db1557cf71 100644 --- a/tests/test_2596_named_axis.py +++ b/tests/test_2596_named_axis.py @@ -2,6 +2,8 @@ from __future__ import annotations +import sys + import numpy as np import pytest @@ -224,6 +226,10 @@ def test_named_axis_indexing(): ) +@pytest.mark.xfail( + sys.platform == "win32", + reason="right-broadcasting (NumPy-style) behaves differently for 32-bit windows", +) def test_named_axis_right_broadcasting(): # [NumPy-style] rightbroadcasting: (n, m) -> (1, n, m) a = ak.Array([1]) # (1,)