diff --git a/tests/_temporary_private_credential_api_test.py b/tests/_temporary_private_credential_api_test.py
index b7daf95f..b9727e82 100644
--- a/tests/_temporary_private_credential_api_test.py
+++ b/tests/_temporary_private_credential_api_test.py
@@ -32,8 +32,18 @@ def test_credential_get_input(
 @pytest.mark.parametrize(
     ('inputs', 'key', 'expected'),
     (
-        pytest.param({'foo2': 'bar2'}, 'foo2', True, id='key-present'),
-        pytest.param({'foo3': 'bar3'}, 'baz', False, id='key-missing'),
+        pytest.param(
+            {'foo2': 'bar2'},
+            'foo2',
+            True,  # noqa: WPS425
+            id='key-present',
+        ),
+        pytest.param(
+            {'foo3': 'bar3'},
+            'baz',
+            False,  # noqa: WPS425
+            id='key-missing',
+        ),
     ),
 )
 def test_credential_has_input(