Update code documentation and variables

Change-Id: I40a3dcfcca6be63b6ea44f935bb631948273dd82
Signed-off-by: George Keishing <gkeishin@in.ibm.com>
diff --git a/bin/generate_inventory b/bin/generate_inventory
index 2fe98f4..77c8f70 100755
--- a/bin/generate_inventory
+++ b/bin/generate_inventory
@@ -90,7 +90,7 @@
 
 # Check if there is mismatch in data vs expect list
 if len(inventory_dict) != len(inventory_items):
-    print_error("The generated list doesn't match Master Inventory List.\n")
+    print_error("The generated list doesn't match Inventory List.\n")
     print (data)
     print_var(inventory_items)
     sys.exit()
diff --git a/lib/esel_utils.robot b/lib/esel_utils.robot
index 50f148b..7cb9df1 100755
--- a/lib/esel_utils.robot
+++ b/lib/esel_utils.robot
@@ -63,12 +63,12 @@
 
 Check For Error Logs
     [Documentation]  Fail if there are error logs. Ignore logs with
-    ...              severity in the whitelist.
+    ...              severity in the ignorelist.
 
-    [Arguments]  ${whitelist}
+    [Arguments]  ${ignorelist
 
     # Description of Argument(s):
-    # whitelist  A list to be used to filter out esels which are
+    # ignorelist A list to be used to filter out esels which are
     #            of no interest to the caller.
     #            Error Logs with Severity field matching an
     #            entry in this list will be ignored. (e.g.
@@ -82,8 +82,8 @@
 
     # Get a list of the severities of the error logs.
     ${error_log_severities}=  Nested Get  Severity  ${error_logs}
-    # Subtract the WHITELIST from the error_log_severities.
+    # Subtract the IGNORETLIST from the error_log_severities.
     ${problem_error_logs}=  Evaluate
-    ...  list(set($error_log_severities) - set($whitelist))
+    ...  list(set($error_log_severities) - set($ignorelist)
 
     Valid Length  problem_error_logs   max_length=0
diff --git a/systest/htx_hardbootme_test.robot b/systest/htx_hardbootme_test.robot
index ea7532c..18d82b4 100755
--- a/systest/htx_hardbootme_test.robot
+++ b/systest/htx_hardbootme_test.robot
@@ -64,7 +64,7 @@
 ${rest_keyword}              REST
 
 # Error log Severities to ignore when checking Error Logs.
-@{ESEL_WHITELIST}
+@{ESEL_IGNORE_LIST}
 ...  xyz.openbmc_project.Logging.Entry.Level.Informational
 
 
@@ -219,7 +219,7 @@
     [Documentation]  Run until HTX exerciser fails.
     Repeat Keyword  ${HTX_DURATION}
     ...  Run Keywords  Check HTX Run Status
-    ...  AND  Check For Error Logs  ${ESEL_WHITELIST}
+    ...  AND  Check For Error Logs  ${ESEL_IGNORE_LIST}
     ...  AND  Sleep  ${HTX_INTERVAL}
 
 
diff --git a/systest/test_bmc_poll_errors.robot b/systest/test_bmc_poll_errors.robot
index fca158f..7105718 100755
--- a/systest/test_bmc_poll_errors.robot
+++ b/systest/test_bmc_poll_errors.robot
@@ -19,7 +19,7 @@
 ${POLL_INTERVAL}  10 second
 
 # Error log Severities to ignore when checking Error Logs.
-@{ESEL_WHITELIST}
+@{ESEL_IGNORE_LIST}
 ...  xyz.openbmc_project.Logging.Entry.Level.Informational
 
 
@@ -42,7 +42,7 @@
 
     Redfish.Get  /redfish/v1/Chassis/chassis/Sensors
 
-    Check For Error Logs  ${ESEL_WHITELIST}
+    Check For Error Logs  ${ESEL_IGNORE_LIST}
 
 
 Suite Setup Execution