Skip to content

Commit

Permalink
Merge pull request #32 from cjihrig/v1.1.2
Browse files Browse the repository at this point in the history
v1.1.2
  • Loading branch information
cjihrig committed Aug 18, 2015
2 parents de48bca + 55674ec commit a593ee5
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
@@ -1,7 +1,7 @@
{
"name": "catbox-memory",
"description": "Memory adapter for catbox",
"version": "1.1.1",
"version": "1.1.2",
"repository": "git://github.com/hapijs/catbox-memory",
"main": "lib/index.js",
"keywords": [
Expand All @@ -16,7 +16,7 @@
"hoek": "2.x.x"
},
"devDependencies": {
"catbox": "4.x.x",
"catbox": "6.x.x",
"lab": "5.x.x",
"code": "1.x.x"
},
Expand Down
4 changes: 2 additions & 2 deletions test/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -158,10 +158,10 @@ describe('Memory', function () {
client.set(key, '345', 500, function (err) {

expect(err).to.not.exist();
client.get(key, function (err, result) {
client.get(key, function (err, data) {

expect(err).to.equal(null);
expect(result.item).to.equal('345');
expect(data.item).to.equal('345');
done();
});
});
Expand Down

0 comments on commit a593ee5

Please sign in to comment.