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

fix hash expiration tests

This commit is contained in:
Leibale
2024-07-29 10:11:04 -04:00
parent 49ef273df2
commit 18ccc28c2f
9 changed files with 9 additions and 9 deletions

View File

@@ -32,7 +32,7 @@ describe('HEXPIRE', () => {
testUtils.testWithClient('hexpire', async client => {
assert.deepEqual(
await client.hExpire('key', ['field1'], 0),
[ HASH_EXPIRATION_TIME.FieldNotExists ]
[HASH_EXPIRATION_TIME.FIELD_NOT_EXISTS]
);
}, {
...GLOBAL.SERVERS.OPEN