Skip to content

Commit

Permalink
fix error print in test_unary_ufunc (#566)
Browse files Browse the repository at this point in the history
  • Loading branch information
jjwilke authored Sep 1, 2022
1 parent e2b648a commit 0e70253
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions tests/integration/test_unary_ufunc.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,9 @@ def check_result(op, in_np, out_np, out_num, **isclose_kwargs):
)
if not result:
print(f"cunumeric.{op} failed the test")
print("Inputs:")
for arr in in_np:
print(arr)
print(f"dtype: {arr.dtype}")
print("Input:")
print(in_np)
print(f"dtype: {in_np.dtype}")
print("NumPy output:")
print(out_np)
print(f"dtype: {out_np.dtype}")
Expand Down

0 comments on commit 0e70253

Please sign in to comment.