summaryrefslogtreecommitdiff
path: root/nexus/src/test/kotlin/helpers.kt
diff options
context:
space:
mode:
Diffstat (limited to 'nexus/src/test/kotlin/helpers.kt')
-rw-r--r--nexus/src/test/kotlin/helpers.kt8
1 files changed, 4 insertions, 4 deletions
diff --git a/nexus/src/test/kotlin/helpers.kt b/nexus/src/test/kotlin/helpers.kt
index 57a1d2da..61aed19d 100644
--- a/nexus/src/test/kotlin/helpers.kt
+++ b/nexus/src/test/kotlin/helpers.kt
@@ -29,20 +29,20 @@ import kotlin.io.path.Path
fun conf(
conf: String = "test.conf",
- lambda: suspend (EbicsSetupConfig) -> Unit
+ lambda: suspend (NexusConfig) -> Unit
) = runBlocking {
val config = NEXUS_CONFIG_SOURCE.fromFile(Path("conf/$conf"))
- val ctx = EbicsSetupConfig(config)
+ val ctx = NexusConfig(config)
lambda(ctx)
}
fun setup(
conf: String = "test.conf",
- lambda: suspend (Database, EbicsSetupConfig) -> Unit
+ lambda: suspend (Database, NexusConfig) -> Unit
) = runBlocking {
val config = NEXUS_CONFIG_SOURCE.fromFile(Path("conf/$conf"))
val dbCfg = config.dbConfig()
- val ctx = EbicsSetupConfig(config)
+ val ctx = NexusConfig(config)
Database(dbCfg.dbConnStr).use {
it.conn { conn ->
resetDatabaseTables(conn, dbCfg, "libeufin-nexus")