From 7178113a3ee1ba64d87e4d76c3de06674cb34cc2 Mon Sep 17 00:00:00 2001 From: Reto Schneider Date: Fri, 23 Feb 2024 02:46:15 +0100 Subject: [PATCH] ztest: Remove superfluous comment This is obviously a copy & paste error. It was introduced by 107cb86bb3f981ec89a02b279bacf313c822b564 (ztest: Add initial zexpect API for delayed failing). Signed-off-by: Reto Schneider --- subsys/testsuite/ztest/include/zephyr/ztest_assert.h | 1 - 1 file changed, 1 deletion(-) diff --git a/subsys/testsuite/ztest/include/zephyr/ztest_assert.h b/subsys/testsuite/ztest/include/zephyr/ztest_assert.h index b84b72c8d6..5194c188d9 100644 --- a/subsys/testsuite/ztest/include/zephyr/ztest_assert.h +++ b/subsys/testsuite/ztest/include/zephyr/ztest_assert.h @@ -622,7 +622,6 @@ static inline bool z_zexpect(bool cond, const char *default_msg, const char *fil /** * @brief Expect that @a a equals @a b, otherwise mark test as failed but continue its execution. - * expectation fails, the test will be marked as "skipped". * * @param a Value to compare * @param b Value to compare