Commit 75a6ad3d authored by Avielle Wolfe's avatar Avielle Wolfe Committed by Avielle Wolfe

Remove unneeded spec

I'll add this back once we're actually reusing this class for Project.
parent 158f2720
......@@ -17,14 +17,6 @@ describe Security::VulnerabilitiesFinder do
subject { described_class.new(group, params: params).execute }
it 'is agnostic between projects and groups' do
group_vulnerabilities = described_class.new(group).execute
project_vulnerabilities = described_class.new(project1).execute
expect(group_vulnerabilities.count).to be(4)
expect(project_vulnerabilities.count).to be(2)
end
context 'by report type' do
context 'when sast' do
let(:params) { { report_type: %w[sast] } }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment