Skip to content

Commit

Permalink
test: fix c_, r_
Browse files Browse the repository at this point in the history
Signed-off-by: nstarman <[email protected]>
  • Loading branch information
nstarman committed Oct 13, 2024
1 parent 3bafe42 commit 6dced5f
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion src/quaxed/numpy/_core.py
Original file line number Diff line number Diff line change
Expand Up @@ -544,7 +544,6 @@ def __dir__() -> list[str]:
"pi",
"printoptions",
"promote_types",
"r_",
"s_",
"set_printoptions",
"signedinteger",
Expand Down
1 change: 0 additions & 1 deletion tests/numpy/test_jax.py
Original file line number Diff line number Diff line change
Expand Up @@ -384,7 +384,6 @@ def test_broadcast_to(x1):
assert jnp.all(qnp.broadcast_to(x1, (3, 3)) == jnp.broadcast_to(x1, (3, 3)))


@pytest.mark.xfail(reason="Not implemented.")
def test_c_():
"""Test `quaxed.numpy.c_`."""
assert jnp.all(qnp.c_[1:3, 4:6] == jnp.c_[1:3, 4:6])
Expand Down

0 comments on commit 6dced5f

Please sign in to comment.