Skip to content

Commit

Permalink
git-node: typo correction awating -> awaiting
Browse files Browse the repository at this point in the history
  • Loading branch information
renawolford6 committed Oct 7, 2018
1 parent 71ab41a commit 0610ab0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion lib/pr_checker.js
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ class PRChecker {
cli.info('This PR is being fast-tracked');
return true;
} else {
const msg = ['This PR is being fast-tracked, but awating '];
const msg = ['This PR is being fast-tracked, but awaiting '];
if (approved.length < 2) msg.push('approvals of 2 contributors');
if (!CIStatus) msg.push('a CI run');

Expand Down
6 changes: 3 additions & 3 deletions test/unit/pr_checker.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@ describe('PRChecker', () => {

const expectedLogs = {
warn: [
[ 'This PR is being fast-tracked, but awating ' +
[ 'This PR is being fast-tracked, but awaiting ' +
'approvals of 2 contributors and a CI run' ]
]
};
Expand Down Expand Up @@ -315,7 +315,7 @@ describe('PRChecker', () => {

const expectedLogs = {
warn: [
[ 'This PR is being fast-tracked, but awating ' +
[ 'This PR is being fast-tracked, but awaiting ' +
'approvals of 2 contributors' ]
]
};
Expand Down Expand Up @@ -356,7 +356,7 @@ describe('PRChecker', () => {

const expectedLogs = {
warn: [
[ 'This PR is being fast-tracked, but awating a CI run' ]
[ 'This PR is being fast-tracked, but awaiting a CI run' ]
]
};

Expand Down

0 comments on commit 0610ab0

Please sign in to comment.