Commit d785c01b authored by Henrik Brix Andersen's avatar Henrik Brix Andersen Committed by Fabio Baltieri
Browse files

tests: shell: add missing assert



Add missing assert after polling for the dummy shell backend to be ready.

Fixes: 491f4dd7

Signed-off-by: default avatarHenrik Brix Andersen <henrik@brixandersen.dk>
parent 4a702ea2
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -495,6 +495,7 @@ static void *shell_setup(void)

	/* Wait for the initialization of the shell dummy backend. */
	WAIT_FOR(shell_ready(sh), 20000, k_msleep(1));
	zassert_true(shell_ready(sh), "timed out waiting for dummy shell backend");

	return NULL;
}