From dc928108b9b324859db223546e7b96733a5c6660 Mon Sep 17 00:00:00 2001 From: Ziesie <47595958+Ziesie1@users.noreply.github.com> Date: Thu, 11 Aug 2022 11:32:28 +0200 Subject: [PATCH] tests/unittests: Correct typo in Documentation --- tests/unittests/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/unittests/README.md b/tests/unittests/README.md index 23ab2a9587..096c5fc4ab 100644 --- a/tests/unittests/README.md +++ b/tests/unittests/README.md @@ -256,7 +256,7 @@ Test *tests__
_tests(void) EMB_UNIT_TESTCALLER(_
_tests, set_up, tear_down, fixtures); /* set up and tear down function can be NULL if omitted */ - return (Test *)&_
; + return (Test *)&_
_tests; } ```