Skip to content

Commit d7156d8

Browse files
final fixes
1 parent db420e9 commit d7156d8

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tests/test_capi.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,9 @@ def test_array_get_shape(test_context, array_type):
217217
)
218218

219219
assert result_nd[0] == expected_nd
220-
assert np.all(result_shape == expected_shape)
220+
assert result_shape[0] == expected_shape[0]
221+
assert result_shape[1] == expected_shape[1]
222+
assert result_shape[2] == expected_shape[2]
221223

222224

223225
def test_struct1():

0 commit comments

Comments
 (0)