Skip to content

Commit 3c3b972

Browse files
committed
Update initial test
1 parent ff1ae3a commit 3c3b972

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/cache.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@ describe('cache', () => {
1212
method: 'POST',
1313
path: '/v1/completions',
1414
authHeader: 'api-key-!',
15-
body: '{ "ok": true }',
15+
body: '{"ok":true}',
1616
};
1717
const result = await getCacheKey(params);
1818
expect(utils.objectHash).toHaveBeenCalledWith(params);
19-
expect(result).toEqual('1a97143b720b3d82cf93a34a5a02c61de1492b18d813f4f1859251eef1a738be');
19+
expect(result).toEqual('de8cb85a7a697a5ee1458b31857c4db1c94760b2a14681052170bed55bf6db1b');
2020
});
2121

2222
it('removes null or empty values', async () => {

0 commit comments

Comments
 (0)