Skip to content

Commit

Permalink
revert temporary changes made in gh-2160 (#2173)
Browse files Browse the repository at this point in the history
  • Loading branch information
vtavana authored Nov 14, 2024
1 parent 881d356 commit 3b235ac
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions tests/test_arraypad.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
from dpnp.dpnp_utils.dpnp_utils_pad import _as_pairs as dpnp_as_pairs
from tests.third_party.cupy import testing

from .helper import assert_dtype_allclose, get_all_dtypes, has_support_aspect64
from .helper import assert_dtype_allclose, get_all_dtypes


class TestPad:
Expand Down Expand Up @@ -384,7 +384,6 @@ def test_reflect_symmetric_1d(self, pad_width, mode, reflect_type):
result = dpnp.pad(a_dp, pad_width, mode=mode, reflect_type=reflect_type)
assert_array_equal(result, expected)

@pytest.mark.skipif(not has_support_aspect64(), reason="dpctl-gh-1887")
@pytest.mark.parametrize("data", [[[4, 5, 6], [6, 7, 8]], [[4, 5, 6]]])
@pytest.mark.parametrize("pad_width", [10, (5, 7)])
@pytest.mark.parametrize("mode", ["reflect", "symmetric"])
Expand Down

0 comments on commit 3b235ac

Please sign in to comment.