gh-48330: assert warning is emitted on unittest.TestResult with no addDuration (#103309)

This commit is contained in:
Irit Katriel 2023-04-06 14:05:23 +01:00 committed by GitHub
parent 482b6eeadc
commit 52bc2e7b9d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -304,7 +304,8 @@ class Test_TestCase(unittest.TestCase, TestEquality, TestHashing):
def test(self):
pass
Foo('test').run()
with self.assertWarns(RuntimeWarning):
Foo('test').run()
def test_deprecation_of_return_val_from_test(self):
# Issue 41322 - deprecate return of value that is not None from a test