commit 5239ccfb2ca324170330cbce64c22a3bfc2af0b6
parent 2f5ef047a4a0c045c6e4c81438b8a18e045778b5
Author: Antoine A <>
Date: Tue, 18 Jun 2024 23:43:20 +0200
common: remove println leftover
Diffstat:
4 files changed, 0 insertions(+), 5 deletions(-)
diff --git a/bank/src/test/kotlin/CoreBankApiTest.kt b/bank/src/test/kotlin/CoreBankApiTest.kt
@@ -1223,7 +1223,6 @@ class CoreBankTransactionsApiTest {
// Check amount with fee are checked
for (amount in listOf("KUDOS:7", "KUDOS:6.9")) {
- println(amount)
client.postA("/accounts/merchant/transactions") {
json {
"payto_uri" to "$customerPayto?message=payout2&amount=$amount"
diff --git a/bank/src/test/kotlin/StatsTest.kt b/bank/src/test/kotlin/StatsTest.kt
@@ -61,7 +61,6 @@ class StatsTest {
Timeframe.entries.forEach { timeframe ->
client.get("/monitor?timestamp=${timeframe.name}") { pwAuth("admin") }.assertOkJson<MonitorResponse> {
val resp = it as MonitorWithConversion
- println("$resp")
assertEquals(count, dbCount(resp))
assertEquals(TalerAmount(regionalAmount), regionalVolume(resp))
fiatVolume?.run { assertEquals(TalerAmount(fiatAmount!!), this(resp)) }
diff --git a/common/src/main/kotlin/TalerConfig.kt b/common/src/main/kotlin/TalerConfig.kt
@@ -441,7 +441,6 @@ class TalerConfigSection internal constructor(
/** Access [option] as Duration */
fun duration(option: String) = option(option, "temporal") {
- println("$it $TEMPORAL_PATTERN ${TEMPORAL_PATTERN.matches(it)}")
if (!TEMPORAL_PATTERN.matches(it)) {
throw ValueError("'$it' not a valid temporal")
}
diff --git a/common/src/test/kotlin/ConfigTest.kt b/common/src/test/kotlin/ConfigTest.kt
@@ -78,9 +78,7 @@ class ConfigTest {
// Check wellformed options are properly parsed
for ((raws, expected) in wellformed) {
- println(expected)
for (raw in raws) {
- println(raw)
val conf = conf("[section]\nvalue=$raw")
assertEquals(expected, conf.section("section").lambda("value").require())
}