From c7a42920d86d441dd34d8aeaf5f0bbbef31ecc20 Mon Sep 17 00:00:00 2001 From: Carles Cufi Date: Sat, 19 Nov 2022 15:38:49 +0100 Subject: [PATCH] tests: custom_lib: Fix include paths Align to the new standard that prefixes zephyr/. Signed-off-by: Carles Cufi --- tests/lib/custom_lib/src/main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/lib/custom_lib/src/main.c b/tests/lib/custom_lib/src/main.c index 16c1681..25477e2 100644 --- a/tests/lib/custom_lib/src/main.c +++ b/tests/lib/custom_lib/src/main.c @@ -11,8 +11,8 @@ * library works correctly. */ -#include -#include +#include +#include #include static void test_get_value(void)