From 82426a026617cd54bf28ea22d799d990cdf90226 Mon Sep 17 00:00:00 2001 From: Roman Babenko Date: Fri, 17 Jan 2025 16:59:45 +0200 Subject: [PATCH] style --- tests/rules/common.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/rules/common.py b/tests/rules/common.py index 7769cc75a..de9bbf48d 100644 --- a/tests/rules/common.py +++ b/tests/rules/common.py @@ -13,7 +13,8 @@ def test_scan_p(self, file_path: pytest.fixture, lines: pytest.fixture, scan_result = scanner_without_filters.scan(provider) assert len(scan_result) == 1 - @pytest.mark.parametrize("lines", [[""], ["String secret = new String('p*****');"], ["SZa6TWGF2XuWdl7c2s2xB1iSlnZJLbvH"]]) + @pytest.mark.parametrize("lines", + [[""], ["String secret = new String('p****');"], ["SZa6TWGF2XuWdl7c2s2xB1iSlnZJLbvH"]]) def test_scan_n(self, file_path: pytest.fixture, lines: List[str], scanner: pytest.fixture) -> None: provider = StringContentProvider(lines, file_path=file_path) scan_result = scanner.scan(provider)