diff --git a/framework/requirements.txt b/framework/requirements.txt index b5726aca2..543b8ff5e 100644 --- a/framework/requirements.txt +++ b/framework/requirements.txt @@ -41,5 +41,5 @@ paho-mqtt==2.1.0 APScheduler==3.10.4 # Requirements for reports generation -Jinja2==3.1.5 +Jinja2==3.1.6 beautifulsoup4==4.12.3 diff --git a/modules/test/base/python/requirements.txt b/modules/test/base/python/requirements.txt index 5faa12fc8..0a40a660d 100644 --- a/modules/test/base/python/requirements.txt +++ b/modules/test/base/python/requirements.txt @@ -9,4 +9,4 @@ grpcio-tools==1.67.1 netifaces==0.11.0 # Requirements for reports generation -Jinja2==3.1.5 +Jinja2==3.1.6 diff --git a/modules/test/dns/python/src/dns_module.py b/modules/test/dns/python/src/dns_module.py index 20ee7617d..fc735d002 100644 --- a/modules/test/dns/python/src/dns_module.py +++ b/modules/test/dns/python/src/dns_module.py @@ -269,8 +269,10 @@ def _dns_network_from_dhcp(self): LOGGER.info('DNS traffic detected only to configured DHCP DNS server') description = 'DNS traffic detected only to DHCP provided server' else: - LOGGER.info('No DNS traffic detected from the device') - description = 'No DNS traffic detected from the device' + LOGGER.info( + 'No DNS traffic detected from the device to the DHCP DNS server') + description = '' \ + 'No DNS traffic detected from the device to the DHCP DNS server' return 'Informational', description def _dns_network_hostname_resolution(self): diff --git a/testing/unit/dns/dns_module_test.py b/testing/unit/dns/dns_module_test.py index 97b45d7d5..1ad85942a 100644 --- a/testing/unit/dns/dns_module_test.py +++ b/testing/unit/dns/dns_module_test.py @@ -179,7 +179,8 @@ def dns_no_dns_traffic_test(self): result = dns_module.dns_network_from_dhcp() # Assign the expected test result - description = 'No DNS traffic detected from the device' + description =''\ + 'No DNS traffic detected from the device to the DHCP DNS server' expected_result = ('Informational', description) # Assert that the actual result matches the expected result.