Skip to content

Commit c5137d7

Browse files
The robot was right!
1 parent ffb71d3 commit c5137d7

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
@@ -4676,7 +4676,7 @@ def test_local_block_diag_dot_to_dot_block_diag(left_multiply):
46764676

46774677
fn = pytensor.function([a, b, c, d], out)
46784678
assert not any(
4679-
isinstance(node, BlockDiagonal) for node in fn.maker.fgraph.toposort()
4679+
isinstance(node.op, BlockDiagonal) for node in fn.maker.fgraph.toposort()
46804680
)
46814681

46824682
fn_expected = pytensor.function(

0 commit comments

Comments
 (0)