Skip to content

Commit

Permalink
Update test/index.js
Browse files Browse the repository at this point in the history
Co-authored-by: Daniel G. Aubert <[email protected]>
  • Loading branch information
simon-contreras-deel and dgaubert authored May 8, 2020
1 parent 4cd7c74 commit b6be8b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ describe('RedisPool', function () {
const redisPool = new RedisPool(TEST_OPTIONS)
const client = await redisPool.acquire(0)

const set = promisify(client.set).bind(client);
const set = promisify(client.set.bind(client));
const get = promisify(client.get).bind(client);

await set('key', 'value');
Expand Down

0 comments on commit b6be8b3

Please sign in to comment.