commit e3d5f7288ae495f445e0fb4b5ca944d301b78c37 parent 29c400cb66911aafaafa956beaf712bf1765b89e Author: Antoine A <> Date: Thu, 25 Sep 2025 18:19:54 +0200 nexus: fix test Diffstat:
| M | testbench/src/test/kotlin/Iso20022Test.kt | | | 4 | ++-- |
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/testbench/src/test/kotlin/Iso20022Test.kt b/testbench/src/test/kotlin/Iso20022Test.kt @@ -66,7 +66,7 @@ class Iso20022Test { val root = Path("test") if (!root.exists()) return for (platform in root.listDirectoryEntries()) { - if (!platform.isDirectory()) continue + if (!platform.isDirectory() || platform.fileName.toString() == "conf") continue // List logs var logs = mutableListOf<Path>() @@ -100,7 +100,7 @@ class Iso20022Test { } // Load config - val cfg = nexusConfig(platform.resolve("ebics.conf")) + val cfg = nexusConfig(root.resolve("conf").resolve("${platform.fileName}.conf")) val currency = cfg.currency val dialect = cfg.ebics.dialect // Parse logs