1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

Merge pull request #18438 from Ziesie1/Ziesie1-patch-1

tests/unittests: Correct typo in documentation
This commit is contained in:
benpicco 2022-08-16 18:07:52 +02:00 committed by GitHub
commit fc33f887b5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -256,7 +256,7 @@ Test *tests_<module>_<header>_tests(void)
EMB_UNIT_TESTCALLER(<module>_<header>_tests, set_up, tear_down, fixtures);
/* set up and tear down function can be NULL if omitted */
return (Test *)&<module>_<header>;
return (Test *)&<module>_<header>_tests;
}
```