update client.test to call hasFile with numeric id

Signed-off-by: Claire Peng <clairep@spotify.com>
This commit is contained in:
Claire Peng
2025-09-25 10:54:31 +01:00
parent 435a5cad5d
commit 5752fa9228
@@ -581,7 +581,7 @@ describe('hasFile', () => {
});
it('should find catalog file by id', async () => {
const hasFile = await client.hasFile('1', 'main', 'catalog-info.yaml');
const hasFile = await client.hasFile(1, 'main', 'catalog-info.yaml');
expect(hasFile).toBe(true);
});