Skip to content

Commit 3ac0d9f

Browse files
committed
fix method
1 parent eb8a32d commit 3ac0d9f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

buildAndReleaseTask/models/CoverageModel.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ export class CoverageModel {
1818
this.uncover = endpointExists
1919
.map(el => new EndpointModel('', el.path, el.verb, true))
2020
.filter(el => {
21-
if(this.uncover.filter(f => f.verb === el.verb && f.path === el.path).length === 0)
21+
if(this.cover.filter(f => f.verb === el.verb && f.path === el.path).length === 0)
2222
return el;
2323
});
2424

0 commit comments

Comments
 (0)