-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: remove effective-pom generation (#212)
Signed-off-by: Ilona Shishov <[email protected]>
- Loading branch information
1 parent
3275aec
commit 56975d1
Showing
5 changed files
with
131 additions
and
289 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -43,7 +43,7 @@ describe('Noop vulnerability aggregator tests', () => { | |
describe('Maven vulnerability aggregator tests', () => { | ||
|
||
it('Test Maven aggregator with one vulnerability', async () => { | ||
let mavenVulnerabilityAggregator = new MavenVulnerabilityAggregator(new PomXml('', false)); | ||
let mavenVulnerabilityAggregator = new MavenVulnerabilityAggregator(new PomXml()); | ||
// let vulnerability = new Vulnerability(dummyRange, 'pkg:maven/[email protected]', 0, null, '', '', null, ''); | ||
let vulnerability = new Vulnerability(dummyRange, 'pkg:maven/[email protected]', 0, ''); | ||
let aggVulnerability = mavenVulnerabilityAggregator.aggregate(vulnerability); | ||
|
@@ -62,7 +62,7 @@ describe('Maven vulnerability aggregator tests', () => { | |
}); | ||
|
||
it('Test Maven aggregator with two identical vulnerability', async () => { | ||
let mavenVulnerabilityAggregator = new MavenVulnerabilityAggregator(new PomXml('', false)); | ||
let mavenVulnerabilityAggregator = new MavenVulnerabilityAggregator(new PomXml()); | ||
// let vulnerability1 = new Vulnerability(dummyRange, 'pkg:maven/[email protected]', 0, null, '', '', null, ''); | ||
let vulnerability1 = new Vulnerability(dummyRange, 'pkg:maven/[email protected]', 0, ''); | ||
let aggVulnerability1 = mavenVulnerabilityAggregator.aggregate(vulnerability1); | ||
|
@@ -77,7 +77,7 @@ describe('Maven vulnerability aggregator tests', () => { | |
}); | ||
|
||
it('Test Maven aggregator with two different vulnerability', async () => { | ||
let mavenVulnerabilityAggregator = new MavenVulnerabilityAggregator(new PomXml('', false)); | ||
let mavenVulnerabilityAggregator = new MavenVulnerabilityAggregator(new PomXml()); | ||
// let vulnerability1 = new Vulnerability(dummyRange, 'pkg:maven/[email protected]', 0, null, '', '', null, ''); | ||
let vulnerability1 = new Vulnerability(dummyRange, 'pkg:maven/[email protected]', 0, ''); | ||
let aggVulnerability1 = mavenVulnerabilityAggregator.aggregate(vulnerability1); | ||
|
Oops, something went wrong.