Skip to content

Commit

Permalink
test: fix SumDimensionsMismatch typo
Browse files Browse the repository at this point in the history
  • Loading branch information
CallumJHays committed Oct 26, 2022
1 parent db5464b commit 478d70f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_val.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ def test_add_meters_seconds_fails():
try:
a + b # type: ignore
assert False
except SumDimensionsMismatch:
except SumDimensionsMismatchError:
assert True


Expand Down Expand Up @@ -170,7 +170,7 @@ def test_sub_meters_seconds_fails():
try:
a - b # type: ignore
assert False
except SumDimensionsMismatch:
except SumDimensionsMismatchError:
assert True


Expand Down

0 comments on commit 478d70f

Please sign in to comment.