Emergency fix for old PNOR update path

Resolves  openbmc/openbmc-test-automation#1108

Change-Id: I9cdf417252a761c95d4409eab0c76b5b86a14007
Signed-off-by: George Keishing <gkeishin@in.ibm.com>
diff --git a/lib/utils.robot b/lib/utils.robot
index 69b28ad..0135de0 100755
--- a/lib/utils.robot
+++ b/lib/utils.robot
@@ -388,7 +388,7 @@
     [Arguments]    ${pnor_image}
     @{arglist}=   Create List    ${pnor_image}
     ${args}=     Create Dictionary    data=@{arglist}
-    ${resp}=  Call Method  ${OPENBMC_BASE_URI}control/flash/bios/  update
+    ${resp}=  Call Method  /org/openbmc/control/flash/bios/  update
     ...  data=${args}
     should be equal as strings      ${resp.status_code}     ${HTTP_OK}
     Wait Until Keyword Succeeds    2 min   10 sec    Is PNOR Flashing
@@ -396,7 +396,7 @@
 Get Flash BIOS Status
     [Documentation]  Returns the status of the flash BIOS API as a string. For
     ...              example 'Flashing', 'Flash Done', etc
-    ${data}=      Read Properties     ${OPENBMC_BASE_URI}control/flash/bios
+    ${data}=  Read Properties  /org/openbmc/control/flash/bios
     [Return]    ${data['status']}
 
 Is PNOR Flashing