Skip to content

Commit 0528438

Browse files
committed
Update code style for current ESLint rules
Signed-off-by: Kevin Locke <[email protected]>
1 parent 7d7dadb commit 0528438

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/git-branch-is-cmd.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,8 +102,8 @@ describe('git-branch-is', () => {
102102
});
103103

104104
it('exit 0 silently for matching i regex branch name', (done) => {
105-
const args
106-
= ARGS.concat('-i', '-r', `^${BRANCH_CURRENT.toUpperCase()}$`);
105+
const args =
106+
ARGS.concat('-i', '-r', `^${BRANCH_CURRENT.toUpperCase()}$`);
107107
gitBranchIsCmd(args, (err, result) => {
108108
assert.ifError(err);
109109
assert.strictEqual(result.code, 0);

0 commit comments

Comments
 (0)