summaryrefslogtreecommitdiff
path: root/docs/unit_tests.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/unit_tests.md')
-rw-r--r--docs/unit_tests.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/unit_tests.md b/docs/unit_tests.md
index 90312dbbdf..787367c718 100644
--- a/docs/unit_tests.md
+++ b/docs/unit_tests.md
@@ -61,7 +61,7 @@ test_static int test_my_function(void)
```c
/* The test framework will call the function named "run_test" */
-void run_test(void)
+void run_test(int argc, char **argv)
{
/* Each unit test can be run using the RUN_TEST macro: */
RUN_TEST(test_my_function);