Skip to content

Commit

Permalink
fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
Uzlopak committed Oct 11, 2023
1 parent a475ccc commit 28552d8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions test/action.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -798,14 +798,14 @@ tap.test('should allow minor when target is major', async () => {

sinon.assert.calledWithExactly(
stubs.logStub.logInfo,
'Dependabot merge completed'
'Dependabot merge completed',
)
sinon.assert.notCalled(stubs.coreStub.setFailed)
sinon.assert.calledOnce(stubs.approveStub)
sinon.assert.calledOnce(stubs.mergeStub)
sinon.assert.calledWith(
stubs.coreStub.setOutput,
MERGE_STATUS_KEY,
MERGE_STATUS.merged
MERGE_STATUS.merged,
)
})
4 changes: 2 additions & 2 deletions test/util.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const { getInputs, parseCommaOrSemicolonSeparatedValue } = tap.mockRequire(
'../src/log.js': {
logWarning: logWarningStub,
},
}
},
)

tap.test('parseCommaOrSemicolonSeparatedValue', async t => {
Expand Down Expand Up @@ -70,7 +70,7 @@ tap.test('getInputs', async t => {
t.equal(logWarningStub.callCount, 1)
t.equal(
logWarningStub.firstCall.args[0],
'merge-method input is ignored because it is malformed, defaulting to `squash`.'
'merge-method input is ignored because it is malformed, defaulting to `squash`.',
)
})
t.test('EXCLUDE_PKGS', async t => {
Expand Down

0 comments on commit 28552d8

Please sign in to comment.