remove console.logs from tests

This commit is contained in:
Brian Gough 2015-03-30 16:56:07 +01:00
parent c8c12e8b41
commit 495af5d568

View file

@ -24,13 +24,9 @@ describe "ZipManager with RedisManager", ->
"redis-sharelatex" : createClient: () =>
rclient ?=
auth:-> # only assign one rclient
multi: () =>
console.log 'returning rclient', rclient
rclient
multi: () => rclient
set: (key, value) => rclient.store[key] = value
get: (key) =>
console.log 'GET', key
rclient.results.push rclient.store[key]
get: (key) => rclient.results.push rclient.store[key]
incr: (key) => rclient.store[key]++
exec: (callback) =>
callback.apply(null, [null, rclient.results])