We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 114ac56 commit 9d951f0Copy full SHA for 9d951f0
test/test_vex.py
@@ -87,7 +87,7 @@ class TestVexGeneration(unittest.TestCase):
87
),
88
}
89
90
- @pytest.mark.skip(reason="Needs an update to match what lib4vex produces.")
+ # @pytest.mark.skip(reason="Needs an update to match what lib4vex produces.")
91
def test_output_cyclonedx(self):
92
"""Test VEX output generation"""
93
@@ -108,6 +108,7 @@ def test_output_cyclonedx(self):
108
for vulnerability in json_data.get("vulnerabilities", []):
109
vulnerability.pop("published", None)
110
vulnerability.pop("updated", None)
111
+ vulnerability.pop("properties", None)
112
113
with open(str(VEX_PATH / "test_cyclonedx_vex.json")) as f:
114
expected_json = json.load(f)
0 commit comments