summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHagop Bozawglanian <hagop.bozawglanian@att.com>2019-08-13 18:39:15 +0000
committerHagop Bozawglanian <hagop.bozawglanian@att.com>2019-08-13 18:39:15 +0000
commit0907dd0dcd870afc12d4cb245d970fefff803898 (patch)
tree4403e085f8212fa9a09b25d195685a47c424526b
parent14c5243cbbb0652ee9ad99519d7d456f5a6c88f4 (diff)
VNFRQTS - Update the rst table content
Issue-ID: VNFRQTS-651 Signed-off-by: Hagop Bozawglanian <hagop.bozawglanian@att.com> Change-Id: If4f535004e78cf3abaf0113eda3cbfa4e562fba1
-rw-r--r--ice_validator/tests/conftest.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/ice_validator/tests/conftest.py b/ice_validator/tests/conftest.py
index 5653cca..7fe9443 100644
--- a/ice_validator/tests/conftest.py
+++ b/ice_validator/tests/conftest.py
@@ -1045,12 +1045,11 @@ def generate_rst_table(output_dir, data):
rst_path = os.path.join(output_dir, "rst.csv")
with open(rst_path, "w", newline="") as f:
out = csv.writer(f)
- out.writerow(("Requirement ID", "Requirement", "Test Module", "Test Name"))
+ out.writerow(("Requirement ID", "Test Module", "Test Name"))
for req_id, metadata in data.items():
out.writerow(
(
metadata["full_title"],
- metadata["description"],
metadata["test_case"],
metadata["validated_by"],
)