Fix typelist for fan in Thermal schema

should be fan_tach instad of fan

Tested-by:
Did a Get method on thermal profile, and made sure, fans
are listed as expected.

Change-Id: Ic5ac321b8f998136b646d6cfd3c7bb5946fe9194
Signed-off-by: Richard Marian Thomaiyar <richard.marian.thomaiyar@linux.intel.com>
diff --git a/redfish-core/lib/thermal.hpp b/redfish-core/lib/thermal.hpp
index 4b2a0a4..14b018f 100644
--- a/redfish-core/lib/thermal.hpp
+++ b/redfish-core/lib/thermal.hpp
@@ -38,7 +38,7 @@
 
   private:
     std::initializer_list<const char*> typeList = {
-        "/xyz/openbmc_project/sensors/fan",
+        "/xyz/openbmc_project/sensors/fan_tach",
         "/xyz/openbmc_project/sensors/temperature",
         "/xyz/openbmc_project/sensors/fan_pwm"};
     void doGet(crow::Response& res, const crow::Request& req,