From 255342e651c906655f857a64d91d536f6124738c Mon Sep 17 00:00:00 2001 From: Andrzej Bednarski <47506452+iksrandeb@users.noreply.github.com> Date: Mon, 29 Nov 2021 17:34:54 +0100 Subject: [PATCH] Minor: typo Minor typo: missing parenthesis --- docs/en/api-guides/unit-tests.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/en/api-guides/unit-tests.rst b/docs/en/api-guides/unit-tests.rst index 249aceef2c..6288d24553 100644 --- a/docs/en/api-guides/unit-tests.rst +++ b/docs/en/api-guides/unit-tests.rst @@ -18,7 +18,7 @@ Tests are added in a function in the C file as follows: .. code-block:: c - TEST_CASE("test name", "[module name]" + TEST_CASE("test name", "[module name]") { // Add test here }