@webex/plugin-meetings 2.52.12 → 2.53.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -345,13 +345,17 @@ describe('plugin-meetings', () => {
345
345
  ciUserUuid: conversation.participants.items[1].entryUUID,
346
346
  });
347
347
 
348
+ webex.request.resolves({
349
+ statusCode: 200,
350
+ body: conversation
351
+ });
352
+
348
353
  await meetingInfo.createAdhocSpaceMeeting(conversationUrl);
349
354
 
350
355
  assert.calledWith(
351
- webex.internal.conversation.get,
352
- {url: conversationUrl},
353
- {includeParticipants: true, disableTransform: true}
354
- );
356
+ webex.request,
357
+ conversationUrl,
358
+ )
355
359
 
356
360
  assert.calledWith(webex.request, {
357
361
  method: 'POST',