Skip to content

Commit fae51f6

Browse files
Chaluvadiroaffix
Chaluvadi
authored andcommitted
fixed import formatting, black and flake8 automatic checks
1 parent 504927c commit fae51f6

File tree

1 file changed

+13
-16
lines changed

1 file changed

+13
-16
lines changed

tests/test_pad.py

+13-16
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,7 @@
44
import pytest
55

66
import arrayfire_wrapper.dtypes as dtypes
7-
from arrayfire_wrapper.lib._constants import Pad
8-
from arrayfire_wrapper.lib.create_and_modify_array.create_array.constant import constant
9-
from arrayfire_wrapper.lib.create_and_modify_array.create_array.pad import pad
10-
from arrayfire_wrapper.lib.create_and_modify_array.manage_array import get_dims
7+
import arrayfire_wrapper.lib as wrapper
118

129

1310
@pytest.mark.parametrize(
@@ -21,13 +18,13 @@
2118
)
2219
def test_zero_padding(original_shape: tuple) -> None:
2320
"""Test if pad creates an array with no padding if no padding is given"""
24-
original_array = constant(2, original_shape, dtypes.s64)
25-
padding = Pad(0)
21+
original_array = wrapper.constant(2, original_shape, dtypes.s64)
22+
padding = wrapper.Pad(0)
2623

2724
zero_shape = tuple(0 for _ in range(len(original_shape)))
28-
result = pad(original_array, zero_shape, zero_shape, padding)
25+
result = wrapper.pad(original_array, zero_shape, zero_shape, padding)
2926

30-
assert get_dims(result)[0:len(original_shape)] == original_shape
27+
assert wrapper.get_dims(result)[0 : len(original_shape)] == original_shape # noqa: E203
3128

3229

3330
@pytest.mark.parametrize(
@@ -42,13 +39,13 @@ def test_zero_padding(original_shape: tuple) -> None:
4239
def test_negative_padding(original_shape: tuple) -> None:
4340
"""Test if pad can properly handle if negative padding is given"""
4441
with pytest.raises(RuntimeError):
45-
original_array = constant(2, original_shape, dtypes.s64)
46-
padding = Pad(0)
42+
original_array = wrapper.constant(2, original_shape, dtypes.s64)
43+
padding = wrapper.Pad(0)
4744

4845
neg_shape = tuple(-1 for _ in range(len(original_shape)))
49-
result = pad(original_array, neg_shape, neg_shape, padding)
46+
result = wrapper.pad(original_array, neg_shape, neg_shape, padding)
5047

51-
assert get_dims(result)[0:len(original_shape)] == original_shape
48+
assert wrapper.get_dims(result)[0 : len(original_shape)] == original_shape # noqa: E203
5249

5350

5451
@pytest.mark.parametrize(
@@ -62,13 +59,13 @@ def test_negative_padding(original_shape: tuple) -> None:
6259
)
6360
def test_padding_shape(original_shape: tuple) -> None:
6461
"""Test if pad outputs the correct shape when a padding is adding to the original array"""
65-
original_array = constant(2, original_shape, dtypes.s64)
66-
padding = Pad(0)
62+
original_array = wrapper.constant(2, original_shape, dtypes.s64)
63+
padding = wrapper.Pad(0)
6764

6865
beg_shape = tuple(random.randint(1, 10) for _ in range(len(original_shape)))
6966
end_shape = tuple(random.randint(1, 10) for _ in range(len(original_shape)))
7067

71-
result = pad(original_array, beg_shape, end_shape, padding)
68+
result = wrapper.pad(original_array, beg_shape, end_shape, padding)
7269
new_shape = np.array(beg_shape) + np.array(end_shape) + np.array(original_shape)
7370

74-
assert get_dims(result)[0:len(original_shape)] == tuple(new_shape)
71+
assert wrapper.get_dims(result)[0 : len(original_shape)] == tuple(new_shape) # noqa: E203

0 commit comments

Comments
 (0)