From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Fri, 22 Jul 2022 16:45:58 +0000 (-0700) Subject: Closes gh-95133: docs, fix indentation level in TestCase.assertLogs example (GH-95134) X-Git-Tag: v3.10.6~41 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e50a63ed180a93bb7de1f6f91cb8ba23a817875d;p=thirdparty%2FPython%2Fcpython.git Closes gh-95133: docs, fix indentation level in TestCase.assertLogs example (GH-95134) (cherry picked from commit 2a9c227ac11f7d8fc6d756542dd3410be0a6b6b0) Co-authored-by: Alexandru Mărășteanu --- diff --git a/Doc/library/unittest.rst b/Doc/library/unittest.rst index 67fec60263a4..0c3fc31b93a9 100644 --- a/Doc/library/unittest.rst +++ b/Doc/library/unittest.rst @@ -1122,8 +1122,8 @@ Test cases Example:: with self.assertLogs('foo', level='INFO') as cm: - logging.getLogger('foo').info('first message') - logging.getLogger('foo.bar').error('second message') + logging.getLogger('foo').info('first message') + logging.getLogger('foo.bar').error('second message') self.assertEqual(cm.output, ['INFO:foo:first message', 'ERROR:foo.bar:second message'])