From bacf66ccd907d9d661cff76aa4d83c1ee9d655bf Mon Sep 17 00:00:00 2001 From: Dominique Padiou <5765435+dpad85@users.noreply.github.com> Date: Tue, 30 Jan 2024 14:44:23 +0100 Subject: [PATCH] Remove print in test --- .../kotlin/fr/acinq/lightning/TrampolineFeesTestsCommon.kt | 1 - 1 file changed, 1 deletion(-) diff --git a/src/commonTest/kotlin/fr/acinq/lightning/TrampolineFeesTestsCommon.kt b/src/commonTest/kotlin/fr/acinq/lightning/TrampolineFeesTestsCommon.kt index e13be609a..fefe17b88 100644 --- a/src/commonTest/kotlin/fr/acinq/lightning/TrampolineFeesTestsCommon.kt +++ b/src/commonTest/kotlin/fr/acinq/lightning/TrampolineFeesTestsCommon.kt @@ -48,7 +48,6 @@ class TrampolineFeesTestsCommon { testCases.forEach { (availableAmount, expectedTrampolineAmount) -> val trampolineAmount = trampolineFees.calculateReverseAmount(availableAmount) - println("$availableAmount: expected=$expectedTrampolineAmount actual=$trampolineAmount") assertEquals(expectedTrampolineAmount, trampolineAmount) if (trampolineAmount != null) { assertEquals(availableAmount, trampolineFees.calculateFees(trampolineAmount) + trampolineAmount)