Skip to content

Commit b4ac1f6

Browse files
Remove op check
1 parent 7e20a48 commit b4ac1f6

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

tests/link/numba/test_slinalg.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
Cholesky,
1414
CholeskySolve,
1515
LUFactor,
16-
LUSolve,
1716
Solve,
1817
SolveTriangular,
1918
)
@@ -685,9 +684,6 @@ def test_lu_solve(b_func, b_shape: tuple[int, ...], trans: bool, overwrite_b: bo
685684
eval_obj_mode=False,
686685
)
687686

688-
op = f.maker.fgraph.outputs[0].owner.op
689-
assert isinstance(op, LUSolve)
690-
691687
# Test with F_contiguous inputs
692688
A_val_f_contig = np.copy(A_val, order="F")
693689
b_val_f_contig = np.copy(b_val, order="F")

0 commit comments

Comments
 (0)