Skip to content

Commit 4a505dc

Browse files
committed
fixed test_opencl mypy issues
1 parent f84366d commit 4a505dc

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

tests/test_opencl.py

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,26 @@
11
import arrayfire_wrapper.lib.interface_functions.opencl as cl
22

33

4-
def test_get_context_type():
4+
def test_get_context_type() -> None:
55
assert isinstance(cl.get_context(), int)
66

77

8-
def test_get_queue_type():
8+
def test_get_queue_type() -> None:
99
assert isinstance(cl.get_queue(), int)
1010

1111

12-
def test_get_device_id():
12+
def test_get_device_id() -> None:
1313
assert isinstance(cl.get_device_id(), int)
1414

1515

16-
def test_set_device_id():
16+
def test_set_device_id() -> None:
1717
cl.set_device_id(0)
1818
assert cl.get_device_id() == 0
1919

2020

21-
def test_get_device_type():
21+
def test_get_device_type() -> None:
2222
assert cl.get_device_type() == cl.DeviceType.GPU # change according to device
2323

2424

25-
def test_get_platform():
25+
def test_get_platform() -> None:
2626
assert cl.get_platform() == cl.PlatformType.INTEL # change according to platform

0 commit comments

Comments
 (0)