Skip to content
This repository has been archived by the owner on Mar 20, 2023. It is now read-only.

Commit

Permalink
fix broken test
Browse files Browse the repository at this point in the history
  • Loading branch information
leebyron committed Nov 12, 2016
1 parent dc0348b commit 304b24b
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/__tests__/http-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -939,7 +939,8 @@ describe('test harness', () => {
data: { thrower: null },
errors: [ {
message: 'Throws!',
locations: [ { line: 1, column: 2 } ]
locations: [ { line: 1, column: 2 } ],
path: [ 'thrower' ]
} ]
});
});
Expand All @@ -961,7 +962,8 @@ describe('test harness', () => {
data: null,
errors: [ {
message: 'Throws!',
locations: [ { line: 1, column: 2 } ]
locations: [ { line: 1, column: 2 } ],
path: [ 'nonNullThrower' ]
} ]
});
});
Expand Down

0 comments on commit 304b24b

Please sign in to comment.