From 4dc26c057fe7f40c95f3a1074b66d3bd86b5c28c Mon Sep 17 00:00:00 2001 From: Nick Jennings Date: Fri, 19 Aug 2022 12:19:10 +0200 Subject: [PATCH] remove debug --- test/05-redis-suite.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/test/05-redis-suite.js b/test/05-redis-suite.js index 5cfe28b..19ab30c 100644 --- a/test/05-redis-suite.js +++ b/test/05-redis-suite.js @@ -180,7 +180,6 @@ define(['require'], function (require) { run: async function (env, test) { setTimeout(async () => { const res = await env.redisPool.blpop(env.channel + 'testlist1'); - console.log('blpop1:', res); test.assert(res, {key: env.channel + 'testlist1', element: 'foo'}); }, 0); } @@ -219,7 +218,6 @@ define(['require'], function (require) { run: async function (env, test) { setTimeout(async () => { const res = await env.redisPool.brpop(env.channel + 'testlist2'); - console.log('brpop2:', res); test.assert(res, {key: env.channel + 'testlist2', element: 'bar'}); }, 0); }