diff --git a/framework/python/src/test_orc/test_orchestrator.py b/framework/python/src/test_orc/test_orchestrator.py index 228f6ff8d..146d2ca93 100644 --- a/framework/python/src/test_orc/test_orchestrator.py +++ b/framework/python/src/test_orc/test_orchestrator.py @@ -494,7 +494,8 @@ def _run_test_module(self, module): # Convert dict from json into TestCase object test_case = TestCase( name=test_result["name"], - result=test_result["result"]) + result=test_result["result"], + description=test_result["description"]) # Add steps to resolve if test is non-compliant if (test_case.result == TestResult.NON_COMPLIANT and diff --git a/resources/test_packs/qualification.json b/resources/test_packs/qualification.json index 45d7cb797..f7c63ee8f 100644 --- a/resources/test_packs/qualification.json +++ b/resources/test_packs/qualification.json @@ -45,6 +45,14 @@ "name": "connection.shared_address", "required_result": "Required" }, + { + "name": "connection.dhcp_disconnect", + "required_result": "Required" + }, + { + "name": "connection.dhcp_disconnect_ip_change", + "required_result": "Required" + }, { "name": "connection.single_ip", "required_result": "Required"