From 57d75477b1d83bf21bb0c4d5ad13f8f7372e87bd Mon Sep 17 00:00:00 2001 From: jonathan343 Date: Fri, 6 Sep 2024 08:54:23 -0700 Subject: [PATCH] Fix docstring spacing. --- tests/unit/test_protocols.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tests/unit/test_protocols.py b/tests/unit/test_protocols.py index 9a35f5aa69..dcb3fee127 100644 --- a/tests/unit/test_protocols.py +++ b/tests/unit/test_protocols.py @@ -517,15 +517,20 @@ def _get_suite_test_id(): def _should_ignore_test(protocol, test_type, suite, case): """ Determines if a protocol test should be ignored. + :type protocol: str :param protocol: The protocol name as represented by its corresponding protocol test file name (without the .json extension). + :type test_type: str :param test_type: The protocol test type ("input" or "output"). + :type suite: str :param suite: The "description" attribute of a protocol test suite. + :type case: str :param case: The "id" attribute of a specific protocol test case. + :return: True if the protocol test should be ignored, False otherwise. :rtype: bool """