summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNan Zhou <nanzhoumails@gmail.com>2022-06-27 03:05:28 +0300
committerNan Zhou <nanzhoumails@gmail.com>2022-06-28 03:13:11 +0300
commit4712a7b92174eba66a13837ce5ccf108eeef0f69 (patch)
treef356d7b2da727ad1e3aaa3dd55694eed98ad634c
parentef74026a7cb80b880671a8f3b803a68a2acb69d0 (diff)
downloadbmcweb-4712a7b92174eba66a13837ce5ccf108eeef0f69.tar.xz
query_param: fix headers
IWYU. Use <> for dependency headers and "" for bmcweb headers. Reference: https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#sf12-prefer-the-quoted-form-of-include-for-files-relative-to-the-including-file-and-the-angle-bracket-form-everywhere-else Signed-off-by: Nan Zhou <nanzhoumails@gmail.com> Change-Id: I80133bb38fbea886c9c7207b2ec16c0aeacca6d5
-rw-r--r--redfish-core/include/utils/query_param_test.cpp7
1 files changed, 5 insertions, 2 deletions
diff --git a/redfish-core/include/utils/query_param_test.cpp b/redfish-core/include/utils/query_param_test.cpp
index 97f9c380f3..626d573599 100644
--- a/redfish-core/include/utils/query_param_test.cpp
+++ b/redfish-core/include/utils/query_param_test.cpp
@@ -1,11 +1,14 @@
#include "query_param.hpp"
+#include <boost/system/result.hpp>
+#include <boost/url/url_view.hpp>
#include <nlohmann/json.hpp>
+#include <cstddef>
#include <iostream>
-#include "gmock/gmock.h"
-#include "gtest/gtest.h"
+#include <gmock/gmock-matchers.h>
+#include <gtest/gtest.h>
namespace redfish::query_param
{