tests: lib: custom_lib: fix includes

Test was including Kernel for nothing, and missed limits.h
(likely included by Kernel)

Signed-off-by: Gerard Marull-Paretas <gerard.marull@nordicsemi.no>
This commit is contained in:
Gerard Marull-Paretas 2022-11-19 16:39:47 +01:00 committed by Carles Cufí
parent b79f9e35d1
commit 96aff8a4ee

View file

@ -11,8 +11,10 @@
* library works correctly.
*/
#include <zephyr/kernel.h>
#include <limits.h>
#include <zephyr/ztest.h>
#include <custom_lib/custom_lib.h>
ZTEST(custom_lib, test_get_value)