thermal subsystem test: fix typo
Testd: unit test only change
Signed-off-by: Nan Zhou <nanzhoumails@gmail.com>
Change-Id: I0a8d1e97d8f0be8a79b9c40a75eeb0659bba638b
diff --git a/test/redfish-core/lib/thermal_subsystem_test.cpp b/test/redfish-core/lib/thermal_subsystem_test.cpp
index 88747a2..305e29a 100644
--- a/test/redfish-core/lib/thermal_subsystem_test.cpp
+++ b/test/redfish-core/lib/thermal_subsystem_test.cpp
@@ -16,7 +16,7 @@
constexpr const char* chassisId = "ChassisId";
constexpr const char* validChassisPath = "ChassisPath";
-void assertThemalCollectionGet(crow::Response& res)
+void assertThermalCollectionGet(crow::Response& res)
{
nlohmann::json& json = res.jsonValue;
EXPECT_EQ(json["@odata.type"], "#ThermalSubsystem.v1_0_0.ThermalSubsystem");
@@ -32,7 +32,7 @@
ThermalSubsystemCollectionStaticAttributesAreExpected)
{
auto shareAsyncResp = std::make_shared<bmcweb::AsyncResp>();
- shareAsyncResp->res.setCompleteRequestHandler(assertThemalCollectionGet);
+ shareAsyncResp->res.setCompleteRequestHandler(assertThermalCollectionGet);
doThermalSubsystemCollection(
shareAsyncResp, chassisId,
std::make_optional<std::string>(validChassisPath));