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)