Skip to content

Commit bf43171

Browse files
Fix Ruff rule LOG
1 parent 5c2bdfd commit bf43171

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tfx/utils/logging_utils_test.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,9 @@ def testDefaultSettings(self):
4949

5050
def testOverrideSettings(self):
5151
"""Ensure log overrides are set correctly."""
52-
config = logging_utils.LoggerConfig(log_root='path', log_level=logging.WARN,
52+
config = logging_utils.LoggerConfig(log_root='path', log_level=logging.WARNING,
5353
pipeline_name='pipe', worker_name='wrk')
5454
self.assertEqual(config.log_root, 'path')
55-
self.assertEqual(config.log_level, logging.WARN)
55+
self.assertEqual(config.log_level, logging.WARNING)
5656
self.assertEqual(config.pipeline_name, 'pipe')
5757
self.assertEqual(config.worker_name, 'wrk')

0 commit comments

Comments
 (0)