Skip to content

Commit

Permalink
Fix wrong call method in test (GH-179)
Browse files Browse the repository at this point in the history
  • Loading branch information
yamap55 committed Aug 12, 2021
1 parent 117aeaf commit 7cf32e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/b009_b010.py
Expand Up @@ -22,7 +22,7 @@
setattr(foo, bar, None)
setattr(foo, "bar{foo}".format(foo="a"), None)
setattr(foo, "123abc", None)
getattr(foo, "except", None)
setattr(foo, "except", None)

# Invalid usage
setattr(foo, "bar", None)
Expand Down

0 comments on commit 7cf32e0

Please sign in to comment.