Skip to content

Commit b619e87

Browse files
The robot was right!
1 parent 5208662 commit b619e87

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/tensor/rewriting/test_math.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4767,7 +4767,7 @@ def test_local_block_diag_dot_to_dot_block_diag(left_multiply):
47674767

47684768
fn = pytensor.function([a, b, c, d], out)
47694769
assert not any(
4770-
isinstance(node, BlockDiagonal) for node in fn.maker.fgraph.toposort()
4770+
isinstance(node.op, BlockDiagonal) for node in fn.maker.fgraph.toposort()
47714771
)
47724772

47734773
fn_expected = pytensor.function(

0 commit comments

Comments
 (0)