Skip to content

Commit

Permalink
fix: Fixed import error in test_tensor.py in torch frontend (ivy-ll…
Browse files Browse the repository at this point in the history
…c#27413)

Co-authored-by: NripeshN <[email protected]>
  • Loading branch information
AbdullahSabry and NripeshN authored Nov 29, 2023
1 parent 9e538b1 commit 33e2be4
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
import ivy_tests.test_ivy.helpers.globals as test_globals
from ivy_tests.test_ivy.helpers import handle_frontend_test
from ivy_tests.test_ivy.test_functional.test_core.test_manipulation import _get_splits
from ivy_tests.array_api_testing.test_array_api.array_api_tests import (
hypothesis_helpers as hh,
from ivy_tests.test_ivy.helpers.hypothesis_helpers.general_helpers import (
two_broadcastable_shapes,
)


Expand Down Expand Up @@ -337,7 +337,7 @@ def _dtypes_input_mask(draw):

@st.composite
def _where_helper(draw):
shape_1, shape_2 = draw(hh.two_broadcastable_shapes())
shape_1, shape_2 = draw(two_broadcastable_shapes())
dtype_x1, x1 = draw(
helpers.dtype_and_values(
available_dtypes=helpers.get_dtypes("valid"),
Expand Down

0 comments on commit 33e2be4

Please sign in to comment.