libeufin

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

commit df8fc8bc5eef7d399e37e65b40a035b61cf66975
parent e139e6bb9213718968e574adb984a675a7e4cd48
Author: MS <ms@taler.net>
Date:   Thu,  5 Oct 2023 18:32:36 +0200

Removing unnecessary test-case

Diffstat:
Mbank/src/test/kotlin/TalerApiTest.kt | 25+------------------------
1 file changed, 1 insertion(+), 24 deletions(-)

diff --git a/bank/src/test/kotlin/TalerApiTest.kt b/bank/src/test/kotlin/TalerApiTest.kt @@ -206,30 +206,7 @@ class TalerApiTest { }.assertBadRequest() } } - - /** - * FIXME: outlines loop bug in the /history/incoming handler. - */ - @Test - fun historyLoop() { - val (db, ctx) = commonSetup() - // Give Foo reasonable debt allowance: - assert( - db.bankAccountSetMaxDebt( - 1L, - TalerAmount(1000000, 0, "KUDOS") - ) - ) - db.bankTransactionCreate(genTx("bogus foobar")).assertSuccess() - testApplication { - application { - corebankWebApp(db, ctx) - } - client.get("/accounts/bar/taler-wire-gateway/history/incoming?delta=1") { - basicAuth("bar", "secret") - }.apply { println(this.bodyAsText()) } - } - } + /** * Testing the /history/incoming call from the TWG API. */