From d6f59e41318c6cd7d44e9b8bd101f218b7734803 Mon Sep 17 00:00:00 2001 From: Harutaka Kawamura Date: Sun, 22 Oct 2023 23:02:22 +0900 Subject: [PATCH] Fix typo (`pytext` -> `pytest`) (#8117) --- .../ruff_linter/src/rules/flake8_pytest_style/rules/fixture.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/ruff_linter/src/rules/flake8_pytest_style/rules/fixture.rs b/crates/ruff_linter/src/rules/flake8_pytest_style/rules/fixture.rs index 58a5553ce136c..eec71dc46fcfa 100644 --- a/crates/ruff_linter/src/rules/flake8_pytest_style/rules/fixture.rs +++ b/crates/ruff_linter/src/rules/flake8_pytest_style/rules/fixture.rs @@ -28,7 +28,7 @@ use super::helpers::{ /// setting. /// /// ## Why is this bad? -/// If a `@pytext.fixture()` doesn't take any arguments, the parentheses are +/// If a `@pytest.fixture()` doesn't take any arguments, the parentheses are /// optional. /// /// Either removing those unnecessary parentheses _or_ requiring them for all