Skip to content

Commit

Permalink
And I also change the unit test to make it more robust
Browse files Browse the repository at this point in the history
  • Loading branch information
samwaseda committed Sep 22, 2024
1 parent a009b52 commit 3bb4c9c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/unit/mixin/test_semantics.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def test_getattr(self):
with self.assertRaises(AttributeError) as context:
_ = self.middle1.Middle_sub
self.assertIn(
"Did you mean middle_sub",
"Did you mean middle_sub and not Middle_sub",
str(context.exception),
msg="middle_sub must be suggested as it is close to Middle_sub"
)
Expand Down

0 comments on commit 3bb4c9c

Please sign in to comment.