From 332870ea2b5800b12f45c889de5e37c08a0279f5 Mon Sep 17 00:00:00 2001 From: Umang Jain Date: Fri, 30 Apr 2021 10:09:57 +0530 Subject: test: bayer-format: Rectify internal header's #include path libcamera internal headers are not available system-wide. Hence, directive `#include ` is wrong. Fix it by using "" for the #include directive. Fixes: e09c487b97f8 ("test: Add unit tests for the BayerFormat class") Signed-off-by: Umang Jain Reviewed-by: Jacopo Mondi Signed-off-by: Jacopo Mondi --- test/bayer-format.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'test/bayer-format.cpp') diff --git a/test/bayer-format.cpp b/test/bayer-format.cpp index 047e7db3..e396ee83 100644 --- a/test/bayer-format.cpp +++ b/test/bayer-format.cpp @@ -7,9 +7,10 @@ #include -#include #include +#include "libcamera/internal/bayer_format.h" + #include "test.h" using namespace std; -- cgit v1.2.1