File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed
MatrixSDKTests/Crypto/CryptoMachine Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -183,17 +183,16 @@ class MXCryptoMachineUnitTests: XCTestCase {
183
183
184
184
// MARK: - Verification events
185
185
186
- func test_receiveUnencryptedVerificationEvent ( ) async throws {
186
+ func disabled_test_receiveUnencryptedVerificationEvent ( ) async throws {
187
187
let event = try makeUnencryptedRequestEvent ( )
188
-
189
188
try await machine. receiveVerificationEvent ( event: event, roomId: roomId)
190
189
191
190
let requests = machine. verificationRequests ( userId: otherUserId)
192
191
XCTAssertEqual ( requests. count, 1 )
193
192
XCTAssertEqual ( requests. first? . state ( ) , . requested)
194
193
}
195
194
196
- func test_receiveEncryptedVerificationEvent ( ) async throws {
195
+ func disabled_test_receiveEncryptedVerificationEvent ( ) async throws {
197
196
// Start verification by recieving `m.key.verifiaction.request` from the other user
198
197
let requestEvent = try makeUnencryptedRequestEvent ( )
199
198
try await machine. receiveVerificationEvent ( event: requestEvent, roomId: roomId)
You can’t perform that action at this time.
0 commit comments