Fix test tags name mismatch

Example:
$ awk -f check_robot_tags.awk ipmi/*
 --- ipmi/test_ipmi_lanplus.robot:
Verify Lanplus Interface
verify_lanplus_interface

 --- ipmi/test_ipmi_watchdog.robot:
Verify Timer Action For State Change
Verify

After fix:

$ awk -f check_robot_tags.awk ipmi/*

No error

Refer: openbmc/openbmc-test-automation/blob/master/docs/code_standards_check.md#3-robot-tags-check

Change-Id: I680ca0f3cfc13c270f7e9fc36d074b058d2a8aaf
Signed-off-by: George Keishing <gkeishin@in.ibm.com>
diff --git a/ipmi/test_ipmi_watchdog.robot b/ipmi/test_ipmi_watchdog.robot
index e0d9b81..179e4a4 100644
--- a/ipmi/test_ipmi_watchdog.robot
+++ b/ipmi/test_ipmi_watchdog.robot
@@ -101,7 +101,7 @@
 
 Verify Timer Action For State Change
     [Documentation]  Set Watchdog via IPMI raw command and verify timer actions.
-    [Tags]  Verify Timer Action For State Change
+    [Tags]  Verify_Timer_Action_For_State_Change
     [Template]  Validate Watchdog Timer Actions And SEL Events
 
     # set action command                  power state  SEL event
@@ -340,4 +340,4 @@
     Reverse List   ${value}
     ${timer_string}=   Evaluate   "".join(${value})
     ${current_timer_integer}=  Convert To Integer  ${timer_string}  16
-    Should Be True   ${current_timer_integer} < ${start_timer_integer}
\ No newline at end of file
+    Should Be True   ${current_timer_integer} < ${start_timer_integer}