Merge "Cleanup Docstring typo and formatting"

This commit is contained in:
Zuul
2025-08-20 19:20:26 +00:00
committed by Gerrit Code Review

View File

@@ -140,14 +140,15 @@ class TestScannerUploader:
def check_for_capabilities_to_remove(self, test_info_id: int, capabilities: [str]): def check_for_capabilities_to_remove(self, test_info_id: int, capabilities: [str]):
""" """
Checks for capabilities in the db that no longer exist on the test Checks for capabilities in the db that no longer exist on the test
Args:
test_info_id (int): the test_info_id Args:
capabilities ([str]): the capabilities on the test test_info_id (int): the test_info_id
v capabilities ([str]): the capabilities on the test
""" """
capability_test_operation = TestCapabilityOperation()
# next we need to remove capabilities that are in the database but no longer on the test # next we need to remove capabilities that are in the database but no longer on the test
capability_test_operation = TestCapabilityOperation()
db_capabilities = capability_test_operation.get_capabilities_for_test(test_info_id) db_capabilities = capability_test_operation.get_capabilities_for_test(test_info_id)
# get just the marker names to match with test capabilities # get just the marker names to match with test capabilities