Skip to content

Commit 10399e7

Browse files
committed
Exclude a test with dtype=numpy.intc from allowed integer types due to issue on Win
1 parent 18c1868 commit 10399e7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_randomstate.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,8 +96,8 @@ def test_uniform_float(self, dtype, usm_type):
9696
assert_array_almost_equal(actual, desired, decimal=6)
9797

9898
@pytest.mark.parametrize("dtype",
99-
[dpnp.int32, numpy.int32, numpy.intc],
100-
ids=['dpnp.int32', 'numpy.int32', 'numpy.intc'])
99+
[dpnp.int32, numpy.int32],
100+
ids=['dpnp.int32', 'numpy.int32'])
101101
@pytest.mark.parametrize("usm_type",
102102
["host", "device", "shared"],
103103
ids=['host', 'device', 'shared'])

0 commit comments

Comments
 (0)