diff options
-rw-r--r-- | tests/test_markdown_link_style/test_logging.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/test_markdown_link_style/test_logging.py b/tests/test_markdown_link_style/test_logging.py index 6478192..a82b355 100644 --- a/tests/test_markdown_link_style/test_logging.py +++ b/tests/test_markdown_link_style/test_logging.py @@ -39,7 +39,9 @@ class TestMDLSLogger(object): assert self.stream.getvalue().strip('\n') == log_msg def test_info(self): - self.logger.info('INFO::MSG') + log_msg = 'DEBUG::INFO' + self.logger.info(log_msg) + assert self.stream.getvalue().strip('\n') == log_msg def test_warning(self): self.logger.warning('WARNING::MSG') |