From 96aff8a4eef2270fcffa591b94beb470580bdfc9 Mon Sep 17 00:00:00 2001 From: Gerard Marull-Paretas Date: Sat, 19 Nov 2022 16:39:47 +0100 Subject: [PATCH] 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 --- tests/lib/custom_lib/src/main.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/lib/custom_lib/src/main.c b/tests/lib/custom_lib/src/main.c index 6b3a4b9..e3a4695 100644 --- a/tests/lib/custom_lib/src/main.c +++ b/tests/lib/custom_lib/src/main.c @@ -11,8 +11,10 @@ * library works correctly. */ -#include +#include + #include + #include ZTEST(custom_lib, test_get_value)