VNFRQTS - Update the rst table content 74/93474/1
authorHagop Bozawglanian <hagop.bozawglanian@att.com>
Tue, 13 Aug 2019 18:39:15 +0000 (18:39 +0000)
committerHagop Bozawglanian <hagop.bozawglanian@att.com>
Tue, 13 Aug 2019 18:39:15 +0000 (18:39 +0000)
Issue-ID: VNFRQTS-651

Signed-off-by: Hagop Bozawglanian <hagop.bozawglanian@att.com>
Change-Id: If4f535004e78cf3abaf0113eda3cbfa4e562fba1

ice_validator/tests/conftest.py

index 5653cca..7fe9443 100644 (file)
@@ -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"],
                 )