1
0
mirror of https://github.com/redis/node-redis.git synced 2025-08-04 15:02:09 +03:00

chore: improve coverage further

This commit is contained in:
Ruben Bridgewater
2017-05-30 07:28:43 +02:00
parent b6c317dbb0
commit 581d4a29f3
4 changed files with 15 additions and 8 deletions

View File

@@ -103,7 +103,7 @@ Multi.prototype.quit = function quit () {
this._client._closing = true
this._client.ready = false
}
this._queue.push(new Command('quit', [], null, quitCallback(this._client), callOnWrite))
this._queue.push(new Command('quit', [], callOnWrite, quitCallback(this._client)))
return this
}