s/minThermalRPM/minThermalOutput

The minThermalRPM is only an RPM by the fact that
that is the units of the PID. As the PID units can
be anything, change this to minThermalOutput to allow
for different units (i.e. percent).

Change-Id: Ic53fef1159ade5a413e5d519d407947f3023d8e3
Signed-off-by: James Feist <james.feist@linux.intel.com>
diff --git a/test/pid_zone_unittest.cpp b/test/pid_zone_unittest.cpp
index e8c8a2b..2270fa6 100644
--- a/test/pid_zone_unittest.cpp
+++ b/test/pid_zone_unittest.cpp
@@ -42,7 +42,7 @@
     bool defer = true;
     const char* objPath = "/path/";
     int64_t zone = 1;
-    double minThermalRpm = 1000.0;
+    double minThermalOutput = 1000.0;
     double failSafePercent = 0.75;
 
     int i;
@@ -50,8 +50,8 @@
     SetupDbusObject(&sdbus_mock_mode, defer, objPath, modeInterface, properties,
                     &i);
 
-    PIDZone p(zone, minThermalRpm, failSafePercent, m, bus_mock_mode, objPath,
-              defer);
+    PIDZone p(zone, minThermalOutput, failSafePercent, m, bus_mock_mode,
+              objPath, defer);
     // Success.
 }
 
@@ -80,8 +80,9 @@
         SetupDbusObject(&sdbus_mock_mode, defer, objPath, modeInterface,
                         properties, &property_index);
 
-        zone = std::make_unique<PIDZone>(zoneId, minThermalRpm, failSafePercent,
-                                         mgr, bus_mock_mode, objPath, defer);
+        zone =
+            std::make_unique<PIDZone>(zoneId, minThermalOutput, failSafePercent,
+                                      mgr, bus_mock_mode, objPath, defer);
     }
 
     // unused
@@ -92,7 +93,7 @@
     sdbusplus::SdBusMock sdbus_mock_host;
     sdbusplus::SdBusMock sdbus_mock_mode;
     int64_t zoneId = 1;
-    double minThermalRpm = 1000.0;
+    double minThermalOutput = 1000.0;
     double failSafePercent = 0.75;
     bool defer = true;
     const char* objPath = "/path/";