From 70b04dbaea4d9b2001703961d09f135099cb661b Mon Sep 17 00:00:00 2001 From: Benoit Marty Date: Wed, 29 Jan 2020 12:36:38 +0100 Subject: [PATCH] Disable not passing test, to avoid waiting too long when running the test suite --- .../matrix/android/internal/crypto/verification/SASTest.kt | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/matrix-sdk-android/src/androidTest/java/im/vector/matrix/android/internal/crypto/verification/SASTest.kt b/matrix-sdk-android/src/androidTest/java/im/vector/matrix/android/internal/crypto/verification/SASTest.kt index 5a95f4c8f1..a381ccf091 100644 --- a/matrix-sdk-android/src/androidTest/java/im/vector/matrix/android/internal/crypto/verification/SASTest.kt +++ b/matrix-sdk-android/src/androidTest/java/im/vector/matrix/android/internal/crypto/verification/SASTest.kt @@ -42,6 +42,7 @@ import org.junit.Assert.assertFalse import org.junit.Assert.assertNotNull import org.junit.Assert.assertNull import org.junit.Assert.assertTrue +import org.junit.Assert.fail import org.junit.FixMethodOrder import org.junit.Test import org.junit.runner.RunWith @@ -142,6 +143,7 @@ class SASTest : InstrumentedTest { @Test fun test_key_agreement_protocols_must_include_curve25519() { + fail("Not passing for the moment") val cryptoTestData = mCryptoTestHelper.doE2ETestWithAliceAndBobInARoom() val bobSession = cryptoTestData.secondSession!! @@ -206,6 +208,7 @@ class SASTest : InstrumentedTest { @Test fun test_key_agreement_macs_Must_include_hmac_sha256() { + fail("Not passing for the moment") val cryptoTestData = mCryptoTestHelper.doE2ETestWithAliceAndBobInARoom() val bobSession = cryptoTestData.secondSession!! @@ -243,6 +246,7 @@ class SASTest : InstrumentedTest { @Test fun test_key_agreement_short_code_include_decimal() { + fail("Not passing for the moment") val cryptoTestData = mCryptoTestHelper.doE2ETestWithAliceAndBobInARoom() val bobSession = cryptoTestData.secondSession!!