Skip to content

Commit

Permalink
fixing tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Ayman Lafaz committed Oct 16, 2022
1 parent 1d23b13 commit 8e16bd5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ivy_tests/test_ivy/test_functional/test_extensions.py
Original file line number Diff line number Diff line change
Expand Up @@ -698,7 +698,7 @@ def statistical_dtype_values(draw, *, function):
# implement test for isin
@handle_cmd_line_args
@given(
dtype_and_x = helpers.dtype_and_values(available_dtypes=helpers.get_dtypes("numeric")),
dtype_and_x = helpers.dtype_and_values(available_dtypes=helpers.get_dtypes("numeric"), num_arrays=2),
num_positional_args=helpers.num_positional_args(fn_name="isin")
)

Expand All @@ -713,7 +713,7 @@ def test_isin(
fw,
):
dtype, values = dtype_and_x
assume(len(values) >= 2)
assume(len(values) == 2)
helpers.test_function(
input_dtypes=dtype,
as_variable_flags=as_variable,
Expand Down

0 comments on commit 8e16bd5

Please sign in to comment.