Skip to content

Commit

Permalink
Merge pull request #37 from tangledfruit/greenkeeper-nock-7.5.0
Browse files Browse the repository at this point in the history
Update nock to version 7.5.0 🚀
  • Loading branch information
tangledfruit committed Mar 20, 2016
2 parents 966cf00 + 8afc4c3 commit 859ac6e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,14 +32,14 @@
"jshint": "2.9.1",
"lintspaces-cli": "0.1.1",
"mocha": "2.4.5",
"nock": "7.2.2",
"nock": "7.5.0",
"rx-to-async-iterator": "1.1.3"
},
"dependencies": {
"deep-eql": "0.1.3",
"deepmerge": "0.2.10",
"rx": ">=4.0.7 <5",
"rx-fetch": "1.2.3",
"rx-fetch": "1.2.4",
"shallow-copy": "0.0.1"
},
"engines": {
Expand Down
4 changes: 2 additions & 2 deletions test/testDb.js
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ describe("rx-couch.db()", () => {
it("should fail when _id doesn't match an existing document", function* () {

const err = yield db.get("testing432").shouldThrow();
expect(err.message).to.equal("HTTP Error 404: Not Found");
expect(err.message).to.equal("HTTP Error 404: Object Not Found");

});

Expand Down Expand Up @@ -608,7 +608,7 @@ describe("rx-couch.db()", () => {
it("should actually have deleted the existing document", function* () {

const err = yield db.get('testing123').shouldThrow();
expect(err.message).to.equal("HTTP Error 404: Not Found");
expect(err.message).to.equal("HTTP Error 404: Object Not Found");

});

Expand Down

0 comments on commit 859ac6e

Please sign in to comment.