Skip to content

Commit 51f16ce

Browse files
committed
added return types for interop tests
1 parent 32c5bf2 commit 51f16ce

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

tests/test_interop.py

+6-6
Original file line numberDiff line numberDiff line change
@@ -15,23 +15,23 @@
1515
# flake8: noqa: E203
1616

1717

18-
def test_numpy_to_af_array_type():
18+
def test_numpy_to_af_array_type() -> None:
1919
arr = np.array([1, 2, 3, 4])
2020

2121
af_array = numpy_to_af_array(arr)
2222

2323
assert isinstance(af_array, AFArray)
2424

2525

26-
def test_af_to_numpy_array_type():
26+
def test_af_to_numpy_array_type() -> None:
2727
arr = wrapper.constant(2, (5, 5), int16)
2828

2929
np_arr = af_to_numpy_array(arr)
3030

3131
assert isinstance(np_arr, np.ndarray)
3232

3333

34-
def test_pyopencl_to_af_array_type():
34+
def test_pyopencl_to_af_array_type() -> None:
3535
ctx = cl.create_some_context()
3636
queue = cl.CommandQueue(ctx)
3737

@@ -44,22 +44,22 @@ def test_pyopencl_to_af_array_type():
4444
assert isinstance(af_array, AFArray)
4545

4646

47-
def test_numpy_to_af_array_shape():
47+
def test_numpy_to_af_array_shape() -> None:
4848
np_arr = np.array([1, 2, 3, 4])
4949

5050
af_arr = numpy_to_af_array(np_arr)
5151

5252
assert get_dims(af_arr)[0 : get_numdims(af_arr)] == np_arr.shape[0 : get_numdims(af_arr)]
5353

5454

55-
def test_af_to_numpy_array_shape():
55+
def test_af_to_numpy_array_shape() -> None:
5656
af_arr = wrapper.constant(2, (5, 5), int16)
5757

5858
np_arr = af_to_numpy_array(af_arr)
5959
assert np_arr.shape[0 : get_numdims(af_arr)] == get_dims(af_arr)[0 : get_numdims(af_arr)]
6060

6161

62-
def test_pyopencl_to_af_array_shape():
62+
def test_pyopencl_to_af_array_shape() -> None:
6363
ctx = cl.create_some_context()
6464
queue = cl.CommandQueue(ctx)
6565

0 commit comments

Comments
 (0)