File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -22,8 +22,6 @@ import {
2222 RequestResponse ,
2323 Room as RoomModel ,
2424 RoomMovedResponse ,
25- RpcAck ,
26- RpcResponse ,
2725 SignalTarget ,
2826 SpeakerInfo ,
2927 type StreamStateUpdate ,
@@ -68,7 +66,6 @@ import {
6866 UnexpectedConnectionState ,
6967} from './errors' ;
7068import { EngineEvent } from './events' ;
71- import { RpcError } from './rpc' ;
7269import CriticalTimers from './timers' ;
7370import type LocalTrack from './track/LocalTrack' ;
7471import type LocalTrackPublication from './track/LocalTrackPublication' ;
Original file line number Diff line number Diff line change @@ -93,7 +93,7 @@ describe('RpcClientManager', () => {
9393
9494 mockSendDataPacket . mockImplementationOnce ( ( ) => Promise . resolve ( ) ) ;
9595
96- const [ _requestId , completionPromise ] = await rpcClientManager . performRpc ( {
96+ const [ requestId , completionPromise ] = await rpcClientManager . performRpc ( {
9797 destinationIdentity : 'remote-identity' ,
9898 method,
9999 payload,
@@ -141,7 +141,7 @@ describe('RpcClientManager', () => {
141141
142142 mockSendDataPacket . mockImplementationOnce ( ( ) => Promise . resolve ( ) ) ;
143143
144- const [ _requestId , completionPromise ] = await rpcClientManager . performRpc ( {
144+ const [ requestId , completionPromise ] = await rpcClientManager . performRpc ( {
145145 destinationIdentity : 'remote-identity' ,
146146 method,
147147 payload,
You can’t perform that action at this time.
0 commit comments