summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorEd Tanous <edtanous@google.com>2023-05-25 20:03:14 +0300
committerEd Tanous <edtanous@google.com>2023-05-25 20:06:29 +0300
commitfaf100f963c9cd8c81c277ad6bc188eecd0fc12b (patch)
tree0ea8561f7561eb5f196f290394430e3b316c0155 /test
parentcf0e004c3c13f4955f98b315fc58cf81c3f4a32b (diff)
downloadbmcweb-faf100f963c9cd8c81c277ad6bc188eecd0fc12b.tar.xz
Fix some includes
System includes should be included with <>, in-tree includes should be included with "". This was found manually, with the help of the following grep statement[1]. git grep -o -h "#include .*" | sort | uniq Tested: Code compiles Signed-off-by: Ed Tanous <edtanous@google.com> Change-Id: I1a6b2a5ba35ccbbb61c67b7c4b036a2d7b3a36a3
Diffstat (limited to 'test')
-rw-r--r--test/include/google/google_service_root_test.cpp3
-rw-r--r--test/redfish-core/lib/service_root_test.cpp3
2 files changed, 4 insertions, 2 deletions
diff --git a/test/include/google/google_service_root_test.cpp b/test/include/google/google_service_root_test.cpp
index b4a476b2dd..88b40d71db 100644
--- a/test/include/google/google_service_root_test.cpp
+++ b/test/include/google/google_service_root_test.cpp
@@ -1,7 +1,8 @@
#include "async_resp.hpp"
#include "google/google_service_root.hpp"
#include "http_request.hpp"
-#include "nlohmann/json.hpp"
+
+#include <nlohmann/json.hpp>
#include <gtest/gtest.h>
diff --git a/test/redfish-core/lib/service_root_test.cpp b/test/redfish-core/lib/service_root_test.cpp
index e11f113f0e..78c068d760 100644
--- a/test/redfish-core/lib/service_root_test.cpp
+++ b/test/redfish-core/lib/service_root_test.cpp
@@ -2,9 +2,10 @@
#include "async_resp.hpp"
#include "http_response.hpp"
-#include "nlohmann/json.hpp"
#include "service_root.hpp"
+#include <nlohmann/json.hpp>
+
#include <memory>
#include <vector>