Skip to content

Commit

Permalink
Fix types in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
mtranter committed Mar 2, 2023
1 parent 0a3e26c commit 2855a83
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/table.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -433,7 +433,7 @@ describe('Table', () => {
});
};
it('Should get selected keys', async () => {
const result: any = await setup();
const result = await setup();
expect(result?.gsihash).toEqual(key.gsihash);
expect(result?.sort).toEqual(key.sort);
expect(result?.complexSubDoc.subSubDoc.id).toEqual('123');
Expand Down

0 comments on commit 2855a83

Please sign in to comment.