-
-
Notifications
You must be signed in to change notification settings - Fork 32k
Fix an invalid assertEqual() call in test_descr.py #15318
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
8fcfd49
to
b67f81a
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM. The commit 479a7e7 changes raise TestFailed(reason)
statements to use self.fail
and the check is done correctly test_classmethods
. Thanks.
Thanks @ZackerySpytz for the PR, and @pablogsal for merging it 🌮🎉.. I'm working now to backport this
8000
PR to: 3.7, 3.8. |
GH-15533 is a backport of this pull request to the 3.8 branch. |
(cherry picked from commit 6b2e325) Co-authored-by: Zackery Spytz <zspytz@gmail.com>
(cherry picked from commit 6b2e325) Co-authored-by: Zackery Spytz <zspytz@gmail.com>
GH-15534 is a backport of this pull request to the 3.7 branch. |
Thanks, @ZackerySpytz for the PR! |
(cherry picked from commit 6b2e325) Co-authored-by: Zackery Spytz <zspytz@gmail.com>
(cherry picked from commit 6b2e325) Co-authored-by: Zackery Spytz <zspytz@gmail.com>
It seems that
self.fail()
was intended, notself.assertEqual()
.