From: Hagop Bozawglanian Date: Tue, 13 Aug 2019 18:39:15 +0000 (+0000) Subject: VNFRQTS - Update the rst table content X-Git-Tag: 5.0.0~6 X-Git-Url: https://gerrit.onap.org/r/gitweb?p=vvp%2Fvalidation-scripts.git;a=commitdiff_plain;h=0907dd0dcd870afc12d4cb245d970fefff803898 VNFRQTS - Update the rst table content Issue-ID: VNFRQTS-651 Signed-off-by: Hagop Bozawglanian Change-Id: If4f535004e78cf3abaf0113eda3cbfa4e562fba1 --- 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"], )