Skip to content

Commit

Permalink
test: Change test label from test to invalid
Browse files Browse the repository at this point in the history
  • Loading branch information
potato4d committed Jan 31, 2019
1 parent f561059 commit 688cca4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/lib/github.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@ describe('Github', function () {
it('creates new label', async function () {
const { data: newIssue } = await github.createIssue(remote, { title: 'Test', body: `Test\r\nOriginal:${url}`, labels: ['documentation'] })

const { data: result } = await github.addLabels(remote, { number: newIssue.number, labels: ['test'] })
assert(result.length === 1)
const { data: result } = await github.addLabels(remote, { number: newIssue.number, labels: ['invalid'] })
assert(result.length === 2)
})
})
})
Expand Down

0 comments on commit 688cca4

Please sign in to comment.