File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
vulnerabilities/tests/pipelines Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -47,13 +47,13 @@ def pipeline():
4747 return CurlImporterPipeline ()
4848
4949
50- @patch ("vulnerabilities.importers .curl_importer.fetch_response" )
50+ @patch ("vulnerabilities.pipelines.v2_importers .curl_importer.fetch_response" )
5151def test_advisories_count (mock_fetch , pipeline ):
5252 mock_fetch .return_value .json .return_value = [SAMPLE_CURL_ADVISORY ]
5353 assert pipeline .advisories_count () == 1
5454
5555
56- @patch ("vulnerabilities.importers .curl_importer.fetch_response" )
56+ @patch ("vulnerabilities.pipelines.v2_importers .curl_importer.fetch_response" )
5757def test_collect_advisories (mock_fetch , pipeline ):
5858 mock_fetch .return_value .json .return_value = [SAMPLE_CURL_ADVISORY ]
5959 advisories = list (pipeline .collect_advisories ())
You can’t perform that action at this time.
0 commit comments