Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: check if 32bit right broadcasting test pass again #3386

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 0 additions & 7 deletions tests/test_2596_named_axis.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@

from __future__ import annotations

import sys

import numpy as np
import pytest

Expand Down Expand Up @@ -375,11 +373,6 @@ def test_negative_named_axis_indexing():
)


@pytest.mark.xfail(
sys.platform == "win32",
reason="right-broadcasting (NumPy-style) behaves differently for 32-bit windows",
strict=False,
)
def test_named_axis_right_broadcasting():
# [NumPy-style] rightbroadcasting: (n, m) -> (1, n, m)
a = ak.Array([1]) # (1,)
Expand Down
Loading