Use system include directives for libpldm headers
libpldm is now an external dependency rather than an in-tree library.
Adjust the includes accordingly.
Change-Id: Ib2590b823039d3127d65f66976b294a2fb88e9c1
Signed-off-by: Manojkiran Eda <manojkiran.eda@gmail.com>
diff --git a/platform-mc/test/event_manager_test.cpp b/platform-mc/test/event_manager_test.cpp
index 087dff3..4550b40 100644
--- a/platform-mc/test/event_manager_test.cpp
+++ b/platform-mc/test/event_manager_test.cpp
@@ -1,7 +1,3 @@
-#include "libpldm/base.h"
-#include "libpldm/entity.h"
-#include "libpldm/platform.h"
-
#include "common/instance_id.hpp"
#include "common/types.hpp"
#include "mock_event_manager.hpp"
@@ -11,6 +7,10 @@
#include "test/test_instance_id.hpp"
#include "utils_test.hpp"
+#include <libpldm/base.h>
+#include <libpldm/entity.h>
+#include <libpldm/platform.h>
+
#include <gtest/gtest.h>
using ::testing::_;