Skip to content

Commit a0bd06a

Browse files
committed
git-node: typo correction awating -> awaiting
1 parent 4d1749e commit a0bd06a

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

lib/pr_checker.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ class PRChecker {
168168
cli.info('This PR is being fast-tracked');
169169
return true;
170170
} else {
171-
const msg = ['This PR is being fast-tracked, but awating '];
171+
const msg = ['This PR is being fast-tracked, but awaiting '];
172172
if (approved.length < 2) msg.push('approvals of 2 contributors');
173173
if (!CIStatus) msg.push('a CI run');
174174

test/unit/pr_checker.test.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -274,7 +274,7 @@ describe('PRChecker', () => {
274274

275275
const expectedLogs = {
276276
warn: [
277-
[ 'This PR is being fast-tracked, but awating ' +
277+
[ 'This PR is being fast-tracked, but awaiting ' +
278278
'approvals of 2 contributors and a CI run' ]
279279
]
280280
};
@@ -315,7 +315,7 @@ describe('PRChecker', () => {
315315

316316
const expectedLogs = {
317317
warn: [
318-
[ 'This PR is being fast-tracked, but awating ' +
318+
[ 'This PR is being fast-tracked, but awaiting ' +
319319
'approvals of 2 contributors' ]
320320
]
321321
};
@@ -356,7 +356,7 @@ describe('PRChecker', () => {
356356

357357
const expectedLogs = {
358358
warn: [
359-
[ 'This PR is being fast-tracked, but awating a CI run' ]
359+
[ 'This PR is being fast-tracked, but awaiting a CI run' ]
360360
]
361361
};
362362

0 commit comments

Comments
 (0)