Skip to content

Commit

Permalink
Attempt to fail test due to first-timers#189
Browse files Browse the repository at this point in the history
see first-timers#189 -- if this passes, then first-timers#190 should fix it!
  • Loading branch information
jywarren committed Feb 26, 2018
1 parent b126d76 commit 5ad40b5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/unit/get-commit-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ test('get commit request succeeds', t => {
files: [{
filename: 'filename',
patch: 'patch',
blob_url: 'https://github.com/Techforchange/first-timers-test/blob/f00ecb1bbffe515500558568ae0b176d2a1defe8/README.md'
blob_url: 'https://github.com/Techforchange/first-timers-test/blob/f00ecb1bbffe515500558568ae0b176d2a1defe8/docs/README.md'
}],
commit: {
message: 'message'
Expand All @@ -44,7 +44,7 @@ test('get commit request succeeds', t => {
t.is(state.commit.message, 'message')
t.is(state.commit.filename, 'filename')
t.is(state.commit.patch, 'patch')
t.is(state.commit.branchUrl, 'https://github.com/Techforchange/first-timers-test/blob/defaultBranch/README.md')
t.is(state.commit.branchUrl, 'https://github.com/Techforchange/first-timers-test/blob/defaultBranch/docs/README.md')

simple.restore()
t.end()
Expand Down

0 comments on commit 5ad40b5

Please sign in to comment.