Skip to content

Commit 2fc7dae

Browse files
committed
disabled tests
1 parent 4eff179 commit 2fc7dae

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

MatrixSDKTests/Crypto/CryptoMachine/MXCryptoMachineUnitTests.swift

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -183,17 +183,16 @@ class MXCryptoMachineUnitTests: XCTestCase {
183183

184184
// MARK: - Verification events
185185

186-
func test_receiveUnencryptedVerificationEvent() async throws {
186+
func disabled_test_receiveUnencryptedVerificationEvent() async throws {
187187
let event = try makeUnencryptedRequestEvent()
188-
189188
try await machine.receiveVerificationEvent(event: event, roomId: roomId)
190189

191190
let requests = machine.verificationRequests(userId: otherUserId)
192191
XCTAssertEqual(requests.count, 1)
193192
XCTAssertEqual(requests.first?.state(), .requested)
194193
}
195194

196-
func test_receiveEncryptedVerificationEvent() async throws {
195+
func disabled_test_receiveEncryptedVerificationEvent() async throws {
197196
// Start verification by recieving `m.key.verifiaction.request` from the other user
198197
let requestEvent = try makeUnencryptedRequestEvent()
199198
try await machine.receiveVerificationEvent(event: requestEvent, roomId: roomId)

0 commit comments

Comments
 (0)