Skip to content

Commit 6ab5a4e

Browse files
committed
Fix bad var name
1 parent 6779760 commit 6ab5a4e

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

lib/pr_checker.js

+1-5
Original file line numberDiff line numberDiff line change
@@ -119,12 +119,8 @@ class PRChecker {
119119
}
120120
}
121121
if (commentApproved && commentApproved.length !== 0) {
122-
let notComm = approved.length;
123-
approved.map((r) => {
124-
if (r.review.source !== FROM_REVIEW_COMMENT) { notComm--; }
125-
});
126122
let hint = this.getTSCHint(approved);
127-
logger.info(`LGTM in commented review: ${notComm}${hint}`);
123+
logger.info(`LGTM in commented review: ${commentApproved.length}${hint}`);
128124
for (const { reviewer, review } of commentApproved) {
129125
if (review.source === FROM_REVIEW_COMMENT) {
130126
logger.info(

0 commit comments

Comments
 (0)