Skip to content

Commit

Permalink
Update numpy_functions_test.py
Browse files Browse the repository at this point in the history
Fix E721
  • Loading branch information
Smartappli authored Dec 1, 2024
1 parent 915bc3f commit 2863e48
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/syft/tests/syft/serde/numpy_functions_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ def test_numpy_functions(func, func_arguments, request):

except Exception as e:
assert (
e == AttributeError
e is AttributeError
), f"Can not evaluate {func}({func_arguments}) with {e}"
print(e)
else:
Expand Down

0 comments on commit 2863e48

Please sign in to comment.