Skip to content

Commit

Permalink
remove debug
Browse files Browse the repository at this point in the history
  • Loading branch information
silverbucket committed Aug 19, 2022
1 parent a560604 commit 4dc26c0
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions test/05-redis-suite.js
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
Expand Down Expand Up @@ -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);
}
Expand Down

0 comments on commit 4dc26c0

Please sign in to comment.