summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorUmang Jain <umang.jain@ideasonboard.com>2021-04-30 10:09:57 +0530
committerJacopo Mondi <jacopo@jmondi.org>2021-05-05 10:32:33 +0200
commit332870ea2b5800b12f45c889de5e37c08a0279f5 (patch)
tree03a465417a4bd0cc8a4ab73213292a813d51bbc2 /test
parent08f74696173c1047f9d8e414021e8cd96a1ab646 (diff)
test: bayer-format: Rectify internal header's #include path
libcamera internal headers are not available system-wide. Hence, directive `#include <libcamera/internal/header.h>` 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 <umang.jain@ideasonboard.com> Reviewed-by: Jacopo Mondi <jacopo@jmondi.org> Signed-off-by: Jacopo Mondi <jacopo@jmondi.org>
Diffstat (limited to 'test')
-rw-r--r--test/bayer-format.cpp3
1 files changed, 2 insertions, 1 deletions
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 <iostream>
-#include <libcamera/internal/bayer_format.h>
#include <libcamera/transform.h>
+#include "libcamera/internal/bayer_format.h"
+
#include "test.h"
using namespace std;