Skip to content

Commit

Permalink
modified out variable
Browse files Browse the repository at this point in the history
  • Loading branch information
RakshitKumar04 committed Mar 26, 2023
1 parent 1dcc467 commit 6874e2e
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -570,6 +570,7 @@ def test_numpy_modf(
input_dtype = input_dtypes,
test_flags = test_flags,
)
out = [ivy.array(np.zeros_like(x[0])), ivy.array(np.zeros_like(x[0]))]
np_frontend_helpers.test_frontend_function(
input_dtypes = input_dtypes,
frontend = frontend,
Expand All @@ -578,7 +579,7 @@ def test_numpy_modf(
on_device = on_device,
x1=x[0],
x2=x[1],
out = [ivy.zeros_like(x[0]), ivy.zeros_like(x[0])],
out = out,
where = where,
casting = casting,
order = "K",
Expand Down

0 comments on commit 6874e2e

Please sign in to comment.