From f83ae012b82af2a05a928ff19886b38848b591c2 Mon Sep 17 00:00:00 2001 From: Zanie Date: Tue, 29 Aug 2023 13:54:38 -0500 Subject: [PATCH] Restore RUF ignore --- crates/ruff_cli/tests/black_compatibility_test.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/ruff_cli/tests/black_compatibility_test.rs b/crates/ruff_cli/tests/black_compatibility_test.rs index ac323eaf75..f2c2d00978 100644 --- a/crates/ruff_cli/tests/black_compatibility_test.rs +++ b/crates/ruff_cli/tests/black_compatibility_test.rs @@ -192,8 +192,8 @@ fn test_ruff_black_compatibility() -> Result<()> { // Exclude ruff codes, specifically RUF100, because it causes differences that are not a // problem. Ruff would add a `# noqa: W292` after the first run, black introduces a // newline, and ruff removes the `# noqa: W292` again. - // "--ignore", - // "RUF", + "--ignore", + "RUF", ]; let mut results = vec![];