Test for bufferingHandler too

This commit is contained in:
Matthias 2020-08-14 19:51:50 +02:00
parent 122c0e8ddc
commit 251eb5aa96
1 changed files with 1 additions and 0 deletions

View File

@ -678,6 +678,7 @@ def test_set_loggers_syslog(mocker):
assert len(logger.handlers) == 3
assert [x for x in logger.handlers if type(x) == logging.handlers.SysLogHandler]
assert [x for x in logger.handlers if type(x) == logging.StreamHandler]
assert [x for x in logger.handlers if type(x) == logging.handlers.BufferingHandler]
# reset handlers to not break pytest
logger.handlers = orig_handlers