Skip to content

Commit

Permalink
✅ Fix the broken test
Browse files Browse the repository at this point in the history
  • Loading branch information
lee-dohm committed Mar 5, 2020
1 parent cbfd36b commit 0d6d7ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/index.test.js
Expand Up @@ -54,7 +54,7 @@ describe('create-an-issue', () => {
// Verify that the outputs were set
expect(core.setOutput).toHaveBeenCalledTimes(2)
expect(core.setOutput).toHaveBeenCalledWith('url', 'www')
expect(core.setOutput).toHaveBeenCalledWith('number', 1)
expect(core.setOutput).toHaveBeenCalledWith('number', '1')
})

it('creates a new issue from a different template', async () => {
Expand Down

0 comments on commit 0d6d7ab

Please sign in to comment.