changing parent class of PytestReturnNotNoneWarning

This commit is contained in:
Fraser Stark 2023-07-14 17:13:59 +01:00 committed by Bruno Oliveira
parent e787d2ed48
commit e77591eef7
2 changed files with 2 additions and 1 deletions

View File

@ -143,6 +143,7 @@ Feng Ma
Florian Bruhin Florian Bruhin
Florian Dahlitz Florian Dahlitz
Floris Bruynooghe Floris Bruynooghe
Fraser Stark
Gabriel Landau Gabriel Landau
Gabriel Reis Gabriel Reis
Garvit Shubham Garvit Shubham

View File

@ -61,7 +61,7 @@ class PytestRemovedIn9Warning(PytestDeprecationWarning):
__module__ = "pytest" __module__ = "pytest"
class PytestReturnNotNoneWarning(PytestRemovedIn8Warning): class PytestReturnNotNoneWarning(PytestWarning):
"""Warning emitted when a test function is returning value other than None.""" """Warning emitted when a test function is returning value other than None."""
__module__ = "pytest" __module__ = "pytest"