libeufin

Integration and sandbox testing for FinTech APIs and data formats
Log | Files | Refs | Submodules | README | LICENSE

commit 60a94169034def587acd45276c1335a56be42484
parent 5315d262be9ac369d375943d4b3c7f3e5c897a04
Author: Antoine A <>
Date:   Mon,  2 Dec 2024 16:23:07 +0100

nexus: fix typo

Diffstat:
Mnexus/src/main/kotlin/tech/libeufin/nexus/cli/Testing.kt | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/nexus/src/main/kotlin/tech/libeufin/nexus/cli/Testing.kt b/nexus/src/main/kotlin/tech/libeufin/nexus/cli/Testing.kt @@ -313,7 +313,7 @@ class ExportCmt: CliktCommand("export") { val t = Terminal() for (batch in batches) { val filename = "${batch.creationDate.toDateTimeFilePath()}-${batch.messageId}.xml" - val success = YesNoPrompt("Was $filename upload sucessfull?", t).ask() + val success = YesNoPrompt("Was $filename upload sucessful?", t).ask() if (success == true) { db.initiated.batchSubmissionSuccess(batch.id, now, null) } else if (success == false) {