diff --git a/crates/ruff_linter/src/rules/flake8_logging_format/snapshots/ruff_linter__rules__flake8_logging_format__tests__G010.py.snap b/crates/ruff_linter/src/rules/flake8_logging_format/snapshots/ruff_linter__rules__flake8_logging_format__tests__G010.py.snap index 159f56a00b929..8a9191704f79f 100644 --- a/crates/ruff_linter/src/rules/flake8_logging_format/snapshots/ruff_linter__rules__flake8_logging_format__tests__G010.py.snap +++ b/crates/ruff_linter/src/rules/flake8_logging_format/snapshots/ruff_linter__rules__flake8_logging_format__tests__G010.py.snap @@ -10,7 +10,7 @@ G010.py:6:9: G010 [*] Logging statement uses `warn` instead of `warning` 7 | log.warn("Hello world!") # This shouldn't be considered as a logger candidate 8 | logger.warn("Hello world!") | - = help: Convert to `warn` + = help: Convert to `warning` ℹ Safe fix 3 3 | @@ -31,7 +31,7 @@ G010.py:8:8: G010 [*] Logging statement uses `warn` instead of `warning` 9 | 10 | logging . warn("Hello World!") | - = help: Convert to `warn` + = help: Convert to `warning` ℹ Safe fix 5 5 | @@ -52,7 +52,7 @@ G010.py:10:11: G010 [*] Logging statement uses `warn` instead of `warning` 11 | 12 | from logging import warn, warning, exception | - = help: Convert to `warn` + = help: Convert to `warning` ℹ Safe fix 7 7 | log.warn("Hello world!") # This shouldn't be considered as a logger candidate @@ -72,7 +72,7 @@ G010.py:13:1: G010 [*] Logging statement uses `warn` instead of `warning` 14 | warning("foo") 15 | exception("foo") | - = help: Convert to `warn` + = help: Convert to `warning` ℹ Safe fix 10 10 | logging . warn("Hello World!")