Skip to content

Commit

Permalink
updating the rushx format issue
Browse files Browse the repository at this point in the history
  • Loading branch information
v-vdharmaraj committed Jul 3, 2024
1 parent b9e8d51 commit 94d470a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1038,7 +1038,7 @@ describe("Call Media Client Live Tests", function () {
const callConnectionId: string = result.callConnectionProperties.callConnectionId
? result.callConnectionProperties.callConnectionId
: "";
assert.isDefined(incomingCallContext);
assert.isDefined(incomingCallContext);
if (incomingCallContext) {
const mediaStreamingOptions: MediaStreamingOptions = {
transportUrl: transportUrl,
Expand All @@ -1050,13 +1050,13 @@ describe("Call Media Client Live Tests", function () {
const answerCallOptions: AnswerCallOptions = {
mediaStreamingOptions: mediaStreamingOptions,
};
const answerCallResult = await receiverCallAutomationClient.answerCall(

const answerCallResult = await receiverCallAutomationClient.answerCall(
incomingCallContext,
callBackUrl,
answerCallOptions,
);

const callConnectedEvent = await waitForEvent("CallConnected", callConnectionId, 8000);
assert.isDefined(callConnectedEvent);
callConnection = answerCallResult.callConnection;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,7 @@ const serviceBusConnectionString: string =
env["SERVICEBUS_STRING"] ?? envSetupForPlayback["SERVICEBUS_STRING"];
export const fileSourceUrl: string =
env["FILE_SOURCE_URL"] ?? envSetupForPlayback["FILE_SOURCE_URL"];
export const transportUrl: string =
env["TRANSPORT_URL"] ?? envSetupForPlayback["TRANSPORT_URL"];
export const transportUrl: string = env["TRANSPORT_URL"] ?? envSetupForPlayback["TRANSPORT_URL"];
export const dispatcherCallback: string = dispatcherEndpoint + "/api/servicebuscallback/events";
export const serviceBusReceivers: Map<string, ServiceBusReceiver> = new Map<
string,
Expand Down

0 comments on commit 94d470a

Please sign in to comment.