Skip to content

Commit deb83ef

Browse files
committed
fix call ids
1 parent ece22a8 commit deb83ef

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

__tests__/agent.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ describe.skip('AI agent integration', () => {
3737

3838
it('should throw on invalid OpenAI credentials', async () => {
3939
const streamClient = createTestClient();
40-
const call = streamClient.video.call('default', `call${uuidv4}`);
40+
const call = streamClient.video.call('default', `call${uuidv4()}`);
4141

4242
await expect(
4343
streamClient.video.connectOpenAi({
@@ -51,7 +51,7 @@ describe.skip('AI agent integration', () => {
5151

5252
it('should throw on invalid Stream credentials', async () => {
5353
const streamClient = new StreamClient('', 'secret');
54-
const call = streamClient.video.call('default', `call${uuidv4}`);
54+
const call = streamClient.video.call('default', `call${uuidv4()}`);
5555

5656
await expect(
5757
streamClient.video.connectOpenAi({

0 commit comments

Comments
 (0)