]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
test_logging: Fix BytesWarning in SysLogHandlerTest (GH-93920)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Fri, 17 Jun 2022 09:44:03 +0000 (02:44 -0700)
committerGitHub <noreply@github.com>
Fri, 17 Jun 2022 09:44:03 +0000 (02:44 -0700)
(cherry picked from commit 538f28921f67e36617272faa662375d305d9284c)

Co-authored-by: Victor Stinner <vstinner@python.org>
Lib/test/test_logging.py

index 8212cf7a9a964ddc2e1addca8abcfdbfc25e15ac..bdb1e7588b20b29fa953ef5c38a68fbd7226255e 100644 (file)
@@ -1904,7 +1904,7 @@ class SysLogHandlerTest(BaseTest):
             self.sl_hdlr = hcls((server.server_address[0], server.port))
         else:
             self.sl_hdlr = hcls(server.server_address)
-        self.log_output = ''
+        self.log_output = b''
         self.root_logger.removeHandler(self.root_logger.handlers[0])
         self.root_logger.addHandler(self.sl_hdlr)
         self.handled = threading.Event()