PEL: Change BMCSP01 maint procedure to BMC0001

This name change allows 4 characters of uniqueness instead of just 2.

Signed-off-by: Matt Spinler <spinler@us.ibm.com>
Change-Id: I12cb883619a3a3c2f843dd7ccc3db6524dea3459
diff --git a/test/openpower-pels/fru_identity_test.cpp b/test/openpower-pels/fru_identity_test.cpp
index 4408b25..28a8e98 100644
--- a/test/openpower-pels/fru_identity_test.cpp
+++ b/test/openpower-pels/fru_identity_test.cpp
@@ -165,7 +165,7 @@
         EXPECT_EQ(fru.flattenedSize(), 12);
         EXPECT_EQ(fru.type(), 0x4944);
         EXPECT_EQ(fru.failingComponentType(), FRUIdentity::maintenanceProc);
-        EXPECT_EQ(fru.getMaintProc().value(), "BMCSP01");
+        EXPECT_EQ(fru.getMaintProc().value(), "BMC0001");
         EXPECT_FALSE(fru.getPN());
         EXPECT_FALSE(fru.getCCIN());
         EXPECT_FALSE(fru.getSN());
@@ -183,7 +183,7 @@
         EXPECT_EQ(newFRU.flattenedSize(), 12);
         EXPECT_EQ(newFRU.type(), 0x4944);
         EXPECT_EQ(newFRU.failingComponentType(), FRUIdentity::maintenanceProc);
-        EXPECT_EQ(newFRU.getMaintProc().value(), "BMCSP01");
+        EXPECT_EQ(newFRU.getMaintProc().value(), "BMC0001");
         EXPECT_FALSE(newFRU.getPN());
         EXPECT_FALSE(newFRU.getCCIN());
         EXPECT_FALSE(newFRU.getSN());
@@ -204,8 +204,8 @@
 
     {
         // Raw maintenance procedure
-        FRUIdentity fru{"BMCSPXXLONG", CalloutValueType::raw};
-        EXPECT_EQ(fru.getMaintProc().value(), "BMCSPXX");
+        FRUIdentity fru{"BMCXXXXLONG", CalloutValueType::raw};
+        EXPECT_EQ(fru.getMaintProc().value(), "BMCXXXX");
     }
 }