Skip to content

Commit 7cf32e0

Browse files
authored
Fix wrong call method in test (GH-179)
1 parent 117aeaf commit 7cf32e0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/b009_b010.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
setattr(foo, bar, None)
2323
setattr(foo, "bar{foo}".format(foo="a"), None)
2424
setattr(foo, "123abc", None)
25-
getattr(foo, "except", None)
25+
setattr(foo, "except", None)
2626

2727
# Invalid usage
2828
setattr(foo, "bar", None)

0 commit comments

Comments
 (0)