Skip to content

Commit 1071abc

Browse files
Update tests/tensor/test_basic.py
Co-authored-by: Ricardo Vieira <[email protected]>
1 parent 26071f7 commit 1071abc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/tensor/test_basic.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2185,8 +2185,8 @@ def test_join_negative_axis_rewrite(self):
21852185
a = self.shared(v)
21862186
b = as_tensor_variable(v)
21872187

2188-
equal_computations([join(-1, a, b)], [join(1, a, b)])
2189-
equal_computations([join(-2, a, b)], [join(0, a, b)])
2188+
assert equal_computations([join(-1, a, b)], [join(1, a, b)])
2189+
assert equal_computations([join(-2, a, b)], [join(0, a, b)])
21902190

21912191

21922192
def test_TensorFromScalar():

0 commit comments

Comments
 (0)