@@ -198,7 +198,7 @@ def test_edit_finding_cvssv3_valid_vector_no_prefix(self):
198
198
expected_cvssv3_value = "AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H" ,
199
199
expected_cvssv3_score = "2" ,
200
200
expect_success = False ,
201
- error_message = "No valid CVSS vectors found by cvss.parse_cvss_from_text()" ,
201
+ error_message = "No valid CVSS3 vectors found by cvss.parse_cvss_from_text()" ,
202
202
)
203
203
204
204
@on_exception_html_source_logger
@@ -209,7 +209,7 @@ def test_edit_finding_cvssv3_valid_vector_with_trailing_slash(self):
209
209
expected_cvssv3_value = "CVSS:3.0/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H/" ,
210
210
expected_cvssv3_score = "3" ,
211
211
expect_success = False ,
212
- error_message = "No valid CVSS vectors found by cvss.parse_cvss_from_text()" ,
212
+ error_message = "No valid CVSS3 vectors found by cvss.parse_cvss_from_text()" ,
213
213
)
214
214
215
215
@on_exception_html_source_logger
@@ -220,7 +220,7 @@ def test_edit_finding_cvssv3_with_v2_vector_invalid_due_to_prefix(self):
220
220
expected_cvssv3_value = "CVSS:2.0/AV:N/AC:L/Au:N/C:P/I:P/A:P" ,
221
221
expected_cvssv3_score = "4" ,
222
222
expect_success = False ,
223
- error_message = "No valid CVSS vectors found by cvss.parse_cvss_from_text()" ,
223
+ error_message = "No valid CVSS3 vectors found by cvss.parse_cvss_from_text()" ,
224
224
)
225
225
226
226
@on_exception_html_source_logger
0 commit comments