1
0
mirror of https://github.com/redis/node-redis.git synced 2025-08-06 02:15:48 +03:00
This commit is contained in:
Leibale
2023-07-06 10:42:08 -04:00
parent 4b7784b27a
commit 7bb8a32f20
2 changed files with 6 additions and 6 deletions

View File

@@ -1,5 +1,5 @@
import { strict as assert } from 'assert';
import testUtils, { GLOBAL, MIN_BLOCKING_TIME } from '../test-utils';
import testUtils, { GLOBAL, BLOCKING_MIN_VALUE } from '../test-utils';
import BLMOVE from './BLMOVE';
describe('BLMOVE', () => {
@@ -14,7 +14,7 @@ describe('BLMOVE', () => {
testUtils.testAll('blMove - null', async client => {
assert.equal(
await client.blMove('{tag}source', '{tag}destination', 'LEFT', 'RIGHT', MIN_BLOCKING_TIME),
await client.blMove('{tag}source', '{tag}destination', 'LEFT', 'RIGHT', BLOCKING_MIN_VALUE),
null
);
}, {
@@ -25,7 +25,7 @@ describe('BLMOVE', () => {
testUtils.testAll('blMove - with member', async client => {
const [, reply] = await Promise.all([
client.lPush('{tag}source', 'element'),
client.blMove('{tag}source', '{tag}destination', 'LEFT', 'RIGHT', MIN_BLOCKING_TIME)
client.blMove('{tag}source', '{tag}destination', 'LEFT', 'RIGHT', BLOCKING_MIN_VALUE)
]);
assert.equal(reply, 'element');
}, {

View File

@@ -1,5 +1,5 @@
import { strict as assert } from 'assert';
import testUtils, { GLOBAL, MIN_BLOCKING_TIME } from '../test-utils';
import testUtils, { GLOBAL, BLOCKING_MIN_VALUE } from '../test-utils';
import BLMPOP from './BLMPOP';
describe('BLMPOP', () => {
@@ -25,7 +25,7 @@ describe('BLMPOP', () => {
testUtils.testAll('blmPop - null', async client => {
assert.equal(
await client.blmPop(MIN_BLOCKING_TIME, 'key', 'RIGHT'),
await client.blmPop(BLOCKING_MIN_VALUE, 'key', 'RIGHT'),
null
);
}, {
@@ -36,7 +36,7 @@ describe('BLMPOP', () => {
testUtils.testAll('blmPop - with member', async client => {
const [, reply] = await Promise.all([
client.lPush('key', 'element'),
client.blmPop(MIN_BLOCKING_TIME, 'key', 'RIGHT')
client.blmPop(BLOCKING_MIN_VALUE, 'key', 'RIGHT')
]);
assert.deepEqual(reply, [
'key',