From f9da115fdc8b89add6a846abacdbf94e72551328 Mon Sep 17 00:00:00 2001 From: Brent Westbrook <36778786+ntBre@users.noreply.github.com> Date: Tue, 22 Apr 2025 16:23:08 -0400 Subject: [PATCH] [minor] Delete outdated TODO comment (#17565) Summary -- Delete a TODO I left that was handled in the last minor release (#16125). Test Plan -- N/a --- crates/ruff/tests/lint.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/ruff/tests/lint.rs b/crates/ruff/tests/lint.rs index 41b44d5292..d9b18fcfb7 100644 --- a/crates/ruff/tests/lint.rs +++ b/crates/ruff/tests/lint.rs @@ -5175,8 +5175,8 @@ fn a005_module_shadowing_non_strict() -> Result<()> { } /// Test A005 with `strict-checking` unset -/// TODO(brent) This should currently match the strict version, but after the next minor -/// release it will match the non-strict version directly above +/// +/// This should match the non-strict version directly above #[test] fn a005_module_shadowing_strict_default() -> Result<()> { let tempdir = TempDir::new()?;