You've already forked matrix-react-sdk
mirror of
https://github.com/matrix-org/matrix-react-sdk.git
synced 2025-07-16 22:01:54 +03:00
Fix tests by updating private field names and spies
This commit is contained in:
@ -468,7 +468,7 @@ function restoreEncryptionInfo(searchResultSlice = []) {
|
|||||||
ev.event.curve25519Key,
|
ev.event.curve25519Key,
|
||||||
ev.event.ed25519Key,
|
ev.event.ed25519Key,
|
||||||
);
|
);
|
||||||
ev._forwardingCurve25519KeyChain = ev.event.forwardingCurve25519KeyChain;
|
ev.forwardingCurve25519KeyChain = ev.event.forwardingCurve25519KeyChain;
|
||||||
|
|
||||||
delete ev.event.curve25519Key;
|
delete ev.event.curve25519Key;
|
||||||
delete ev.event.ed25519Key;
|
delete ev.event.ed25519Key;
|
||||||
|
@ -16,7 +16,6 @@ limitations under the License.
|
|||||||
|
|
||||||
import { uniq } from "lodash";
|
import { uniq } from "lodash";
|
||||||
import { Room } from "matrix-js-sdk/src/models/room";
|
import { Room } from "matrix-js-sdk/src/models/room";
|
||||||
import { MatrixEvent } from "matrix-js-sdk/src/models/event";
|
|
||||||
import { MatrixClient } from "matrix-js-sdk/src/client";
|
import { MatrixClient } from "matrix-js-sdk/src/client";
|
||||||
|
|
||||||
import { MatrixClientPeg } from '../MatrixClientPeg';
|
import { MatrixClientPeg } from '../MatrixClientPeg';
|
||||||
@ -31,15 +30,13 @@ import { MatrixClientPeg } from '../MatrixClientPeg';
|
|||||||
export default class DMRoomMap {
|
export default class DMRoomMap {
|
||||||
private static sharedInstance: DMRoomMap;
|
private static sharedInstance: DMRoomMap;
|
||||||
|
|
||||||
private matrixClient: MatrixClient;
|
|
||||||
// TODO: convert these to maps
|
// TODO: convert these to maps
|
||||||
private roomToUser: {[key: string]: string} = null;
|
private roomToUser: {[key: string]: string} = null;
|
||||||
private userToRooms: {[key: string]: string[]} = null;
|
private userToRooms: {[key: string]: string[]} = null;
|
||||||
private hasSentOutPatchDirectAccountDataPatch: boolean;
|
private hasSentOutPatchDirectAccountDataPatch: boolean;
|
||||||
private mDirectEvent: object;
|
private mDirectEvent: object;
|
||||||
|
|
||||||
constructor(matrixClient) {
|
constructor(private readonly matrixClient: MatrixClient) {
|
||||||
this.matrixClient = matrixClient;
|
|
||||||
// see onAccountData
|
// see onAccountData
|
||||||
this.hasSentOutPatchDirectAccountDataPatch = false;
|
this.hasSentOutPatchDirectAccountDataPatch = false;
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user