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

tests/unittests: Correct typo in Documentation

This commit is contained in:
Ziesie 2022-08-11 11:32:28 +02:00 committed by GitHub
parent 98ec922c67
commit dc928108b9
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;
}
```