diff --git a/crates/ruff_linter/src/rules/flake8_pytest_style/rules/marks.rs b/crates/ruff_linter/src/rules/flake8_pytest_style/rules/marks.rs index 76ffcb71d1..4931a24c9d 100644 --- a/crates/ruff_linter/src/rules/flake8_pytest_style/rules/marks.rs +++ b/crates/ruff_linter/src/rules/flake8_pytest_style/rules/marks.rs @@ -31,7 +31,7 @@ use crate::rules::flake8_pytest_style::helpers::{Parentheses, get_mark_decorator /// import pytest /// /// -/// @pytest.mark.foo +/// @pytest.mark.foo() /// def test_something(): ... /// ``` /// @@ -41,7 +41,7 @@ use crate::rules::flake8_pytest_style::helpers::{Parentheses, get_mark_decorator /// import pytest /// /// -/// @pytest.mark.foo() +/// @pytest.mark.foo /// def test_something(): ... /// ``` ///