Skip to content

Commit 2b1a5ca

Browse files
author
AzeezIsh
committed
Ensuring checkstyle was applied
1 parent 8a0d0b2 commit 2b1a5ca

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tests/test_trig.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
import arrayfire_wrapper.dtypes as dtype
66
import arrayfire_wrapper.lib as wrapper
7+
78
from . import utility_functions as util
89

910

@@ -98,6 +99,7 @@ def test_atan2_unsupported_dtypes(invdtypes: dtype.Dtype) -> None:
9899
with pytest.raises(RuntimeError):
99100
wrapper.atan2(wrapper.randu((10, 10), invdtypes), wrapper.randu((10, 10), invdtypes))
100101

102+
101103
@pytest.mark.parametrize(
102104
"shape",
103105
[
@@ -152,4 +154,4 @@ def test_tan_shape_dtypes(shape: tuple, dtype_name: dtype.Dtype) -> None:
152154
util.check_type_supported(dtype_name)
153155
values = wrapper.randu(shape, dtype_name)
154156
result = wrapper.tan(values)
155-
assert wrapper.get_dims(result)[0 : len(shape)] == shape, f"failed for shape: {shape}" # noqa
157+
assert wrapper.get_dims(result)[0 : len(shape)] == shape, f"failed for shape: {shape}" # noqa

0 commit comments

Comments
 (0)