Skip to content

Commit

Permalink
""
Browse files Browse the repository at this point in the history
  • Loading branch information
ethanresnick committed Jan 5, 2017
1 parent e2e5a91 commit 8ce276b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/integration/http-compliance/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ describe("HTTP Compliance", () => {
expect(err.response.status).to.equal(405);
expect(err.response.body.errors[0].detail).to.match(/PUT.+jsonapi\.org/i);
}
).done(done);
).then(done, done);
});

it("should reject other unknown methods too", (done) => {
Expand All @@ -32,7 +32,7 @@ describe("HTTP Compliance", () => {
expect(err.response.status).to.equal(405);
expect(err.response.body.errors[0].detail).to.match(/lock/i);
}
).done(done);
).then(done, done);
});

});

0 comments on commit 8ce276b

Please sign in to comment.