PEL: Change method of asserting a fault LED

There was a recent change in direction on how PELs should request that
fault LEDs be turned on.  Previously, the code would talk to the LED
group objects directly.  The new direction is to set the Functional
property on the OperationalStatus interface on the inventory objects in
question to false, and the LED manager code will watch that to know when
to turn on the LEDs.

Signed-off-by: Matt Spinler <spinler@us.ibm.com>
Change-Id: Ieebb09ba002843cf863359a09aba26540356aa91
diff --git a/test/openpower-pels/mocks.hpp b/test/openpower-pels/mocks.hpp
index 510974c..a2c3b5a 100644
--- a/test/openpower-pels/mocks.hpp
+++ b/test/openpower-pels/mocks.hpp
@@ -39,12 +39,10 @@
                 (const override));
     MOCK_METHOD(std::string, getInventoryFromLocCode,
                 (const std::string&, uint16_t, bool), (const override));
-
-    MOCK_METHOD(std::string, getFaultLEDGroup, (const std::string&),
-                (const override));
-
     MOCK_METHOD(void, assertLEDGroup, (const std::string&, bool),
                 (const override));
+    MOCK_METHOD(void, setFunctional, (const std::string&, bool),
+                (const override));
 
     void changeHostState(bool newState)
     {