doc: pytest: Fix spelling of unlaunched

unlauched_dut is written wrongly - unlaunched_dut is correct.

Signed-off-by: Reto Schneider <reto.schneider@husqvarnagroup.com>
This commit is contained in:
Reto Schneider 2024-10-18 19:35:44 +02:00 committed by David Leach
commit 7b65bbe52e

View file

@ -169,8 +169,8 @@ a fixture ``mcumgr``
# continue test scenario, check version etc. # continue test scenario, check version etc.
unlauched_dut unlaunched_dut
============= ==============
Similar to the ``dut`` fixture, but it does not initialize the device. It can be used when a finer Similar to the ``dut`` fixture, but it does not initialize the device. It can be used when a finer
control over the build process is needed. It becomes responsibility of the test to initialize the control over the build process is needed. It becomes responsibility of the test to initialize the
@ -180,7 +180,7 @@ device.
from twister_harness import DeviceAdapter from twister_harness import DeviceAdapter
def test_sample(unlauched_dut: DeviceAdapter): def test_sample(unlaunched_dut: DeviceAdapter):
unlaunched_dut.launch() unlaunched_dut.launch()
unlaunched_dut.readlines_until('Hello world') unlaunched_dut.readlines_until('Hello world')