Skip to content

Commit

Permalink
fix #1819 - fix EXISTS reply (#1820)
Browse files Browse the repository at this point in the history
* fix #1819 - fix EXISTS reply

* fix for f3f946f - "fix" tests
  • Loading branch information
leibale committed Jan 11, 2022
1 parent 8062c2b commit d34cb9c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/client/lib/commands/EXISTS.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ describe('EXISTS', () => {
testUtils.testWithClient('client.exists', async client => {
assert.equal(
await client.exists('key'),
false
0
);
}, GLOBAL.SERVERS.OPEN);
});
2 changes: 1 addition & 1 deletion packages/client/lib/commands/EXISTS.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ export function transformArguments(
return pushVerdictArguments(['EXISTS'], keys);
}

export { transformBooleanReply as transformReply } from './generic-transformers';
export declare function transformReply(): number;

0 comments on commit d34cb9c

Please sign in to comment.