Closed degenaro closed 5 months ago
Current code snippet:
COMPONENT_DESCRIPTION = 'Component_Description'
component_description = self._csv_mgr.get_value(rule_key, COMPONENT_DESCRIPTION)
If the column heading in the .csv is Component_Description
a match will occur. The change request is to make the matching to be case insensitive, so that a .csv with a column heading component_description
will also match. In fact any casing, even component_DeScRiPtIoN
should match.
Please update test cases to prove case insensitivity.
Issue description / feature objectives
Different heading case should be tolerated. For example $$Control_Id_List, $$control_id_list, $$Control_id_list, etc. should all be allowed.
Caveats / Assumptions
N/A
Completion Criteria
Code to support and corresponding tests delivered.