diff options
Diffstat (limited to 'tests/functional/l/logging_format_interpolation.py')
| -rw-r--r-- | tests/functional/l/logging_format_interpolation.py | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/tests/functional/l/logging_format_interpolation.py b/tests/functional/l/logging_format_interpolation.py index 409faaa29..cb204c535 100644 --- a/tests/functional/l/logging_format_interpolation.py +++ b/tests/functional/l/logging_format_interpolation.py @@ -33,7 +33,5 @@ class Logger(renamed_logging.Logger): pass custom_logger = Logger('three') - -# Currently disabled until we get this in https://github.com/PyCQA/astroid/pull/637 -# custom_logger.info('testing {0}'.format('info')) -# custom_logger.info('testing %s' % 'info') +custom_logger.info('testing {0}'.format('info')) +custom_logger.info('testing %s' % 'info') |
