From 764e9282af7f7293030f01ad5b96bade67852a99 Mon Sep 17 00:00:00 2001 From: Pierre-Marie Padiou Date: Wed, 9 Oct 2024 15:28:29 +0200 Subject: [PATCH] Disable mempool tests (#711) Ongoing testnet3 spam makes those tests fail. --- .../lightning/blockchain/mempool/MempoolSpaceClientTest.kt | 6 ++---- .../lightning/blockchain/mempool/MempoolSpaceWatcherTest.kt | 2 ++ 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/commonTest/kotlin/fr/acinq/lightning/blockchain/mempool/MempoolSpaceClientTest.kt b/src/commonTest/kotlin/fr/acinq/lightning/blockchain/mempool/MempoolSpaceClientTest.kt index 92f18cda5..67efe21a6 100644 --- a/src/commonTest/kotlin/fr/acinq/lightning/blockchain/mempool/MempoolSpaceClientTest.kt +++ b/src/commonTest/kotlin/fr/acinq/lightning/blockchain/mempool/MempoolSpaceClientTest.kt @@ -6,11 +6,9 @@ import fr.acinq.lightning.blockchain.mempool.MempoolSpaceClient.Companion.Offici import fr.acinq.lightning.tests.utils.LightningTestSuite import fr.acinq.lightning.tests.utils.runSuspendTest import fr.acinq.lightning.tests.utils.testLoggerFactory -import kotlin.test.Test -import kotlin.test.assertEquals -import kotlin.test.assertNotNull -import kotlin.test.assertTrue +import kotlin.test.* +@Ignore class MempoolSpaceClientTest : LightningTestSuite() { @Test diff --git a/src/commonTest/kotlin/fr/acinq/lightning/blockchain/mempool/MempoolSpaceWatcherTest.kt b/src/commonTest/kotlin/fr/acinq/lightning/blockchain/mempool/MempoolSpaceWatcherTest.kt index beab577d6..8c42cd758 100644 --- a/src/commonTest/kotlin/fr/acinq/lightning/blockchain/mempool/MempoolSpaceWatcherTest.kt +++ b/src/commonTest/kotlin/fr/acinq/lightning/blockchain/mempool/MempoolSpaceWatcherTest.kt @@ -11,11 +11,13 @@ import fr.acinq.lightning.tests.utils.runSuspendTest import fr.acinq.lightning.tests.utils.testLoggerFactory import kotlinx.coroutines.delay import kotlinx.coroutines.flow.first +import kotlin.test.Ignore import kotlin.test.Test import kotlin.test.assertEquals import kotlin.test.assertIs import kotlin.time.Duration.Companion.seconds +@Ignore class MempoolSpaceWatcherTest : LightningTestSuite() { @Test