Skip to content

Commit

Permalink
add additional assert check
Browse files Browse the repository at this point in the history
  • Loading branch information
vtavana committed Sep 19, 2024
1 parent 483e3e7 commit 63f9f30
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions tests/test_product.py
Original file line number Diff line number Diff line change
Expand Up @@ -775,6 +775,7 @@ def test_kron_order(self, order):

result = dpnp.kron(ia, ib)
expected = numpy.kron(a, b)
assert result.flags["C_CONTIGUOUS"] == expected.flags["C_CONTIGUOUS"]
assert_dtype_allclose(result, expected)


Expand Down

0 comments on commit 63f9f30

Please sign in to comment.