File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -119,6 +119,8 @@ def test_retroactive_edit_finding(self):
119119 self .assert_is_false_positive (finding_1 )
120120 self .assert_is_false_positive (finding_2 )
121121 # Reactivate second finding
122+ # PROBLEM: Upon saving of finding_2 it will be maked a false positive againm that's why this test case is skipped for now
123+ # https://github.com/DefectDojo/django-DefectDojo/issues/8977
122124 self .edit_toggle_false_positive (finding_2 )
123125 # Assert that both findings are active again
124126 self .assert_is_active (finding_1 )
@@ -163,7 +165,9 @@ def suite():
163165 # Add each test the the suite to be run
164166 # success and failure is output by the test
165167 suite .addTest (ProductTest ("test_create_product" ))
166- suite .addTest (FalsePositiveHistoryTest ("test_retroactive_edit_finding" ))
168+ # SKIP this test as the implemented logic will always mark finding1 and finding2 as false positive as long as at least one of them is false positive
169+ # https://github.com/DefectDojo/django-DefectDojo/issues/8977
170+ # suite.addTest(FalsePositiveHistoryTest("test_retroactive_edit_finding"))
167171 suite .addTest (ProductTest ("test_create_product" ))
168172 suite .addTest (FalsePositiveHistoryTest ("test_retroactive_bulk_edit_finding" ))
169173 suite .addTest (ProductTest ("test_delete_product" ))
You can’t perform that action at this time.
0 commit comments