Skip to content

Commit

Permalink
test: fix breaking test
Browse files Browse the repository at this point in the history
  • Loading branch information
Harminder Virk authored and Harminder Virk committed Aug 13, 2022
1 parent b477850 commit 21196e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/redis.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,7 @@ test.group('Redis Manager', () => {
await redis.set('greeting', 'hello-world')

assert.equal(await redis.getdel('greeting'), 'hello-world')
assert.isUndefined(await redis.get('greeting'))
assert.isNull(await redis.get('greeting'))

await redis.quit('primary')
})
Expand Down

0 comments on commit 21196e9

Please sign in to comment.