From 7b65bbe52eac141ebd388a7f428b51124f2dfda6 Mon Sep 17 00:00:00 2001 From: Reto Schneider Date: Fri, 18 Oct 2024 19:35:44 +0200 Subject: [PATCH] doc: pytest: Fix spelling of unlaunched unlauched_dut is written wrongly - unlaunched_dut is correct. Signed-off-by: Reto Schneider --- doc/develop/test/pytest.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/develop/test/pytest.rst b/doc/develop/test/pytest.rst index 3f6db41fd3c..9bf95c03098 100644 --- a/doc/develop/test/pytest.rst +++ b/doc/develop/test/pytest.rst @@ -169,8 +169,8 @@ a fixture ``mcumgr`` # 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 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 - def test_sample(unlauched_dut: DeviceAdapter): + def test_sample(unlaunched_dut: DeviceAdapter): unlaunched_dut.launch() unlaunched_dut.readlines_until('Hello world')