Skip to content

Commit 9117776

Browse files
committed
be more explicit about the data type
1 parent 28bd51e commit 9117776

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_api/test_asynchronous.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ def test_get_shape_chunks(
5656
@pytest.mark.parametrize(
5757
("observed", "expected"),
5858
[
59-
(np.arange(10, dtype="int"), {"shape": (10,), "dtype": np.dtype("int64")}),
59+
(np.arange(10, dtype=np.dtype("int64")), {"shape": (10,), "dtype": np.dtype("int64")}),
6060
(WithChunks(shape=(1, 2), chunks=(1, 2)), {"chunks": (1, 2), "shape": (1, 2)}),
6161
(
6262
create_array(

0 commit comments

Comments
 (0)