Skip to content

Commit

Permalink
fix NotImplementedError string
Browse files Browse the repository at this point in the history
  • Loading branch information
makslevental committed Jun 14, 2023
1 parent 9f3f9b0 commit e951028
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/unit/test_tensor.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def test_non_infer_returns(self):
except NotImplementedError as e:
assert (
str(e)
== "__mod__ with signature __mod__(self, other Any) -> Tensor"
== "NotImplementedError: __mod__ with signature __mod__(self, other Any) -> Tensor"
)

def test_optional_args(self):
Expand Down

0 comments on commit e951028

Please sign in to comment.