diff --git a/tests/validation/hello_world/test_hello_world.py b/tests/validation/hello_world/test_hello_world.py index 725e9a713c5..628c152ac16 100644 --- a/tests/validation/hello_world/test_hello_world.py +++ b/tests/validation/hello_world/test_hello_world.py @@ -1,2 +1,7 @@ +import logging + + def test_hello_world(dut): + LOGGER = logging.getLogger(__name__) dut.expect_exact("Hello Arduino!") + LOGGER.info("Hello Arduino! message was sent")