From 21681c46f73f83e3241ed35a9713a4781ec24e8e Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Tue, 9 Sep 2025 13:32:29 +0200 Subject: [PATCH] Bug 40765: Fix EDI.t I have no idea why this is fixing the test! Without this patch they fail: t/db_dependent/Koha/EDI.t .. 1/5 # Failed test '14 log lines recorded for passed invoice file' # at t/db_dependent/Koha/EDI.t line 725. # got: '12' # expected: '14' # Failed test 'Warn recorded for transferring items' # at t/db_dependent/Koha/EDI.t line 728. # 'Unmatched item at branch:WID' # doesn't match '(?^u:transferring.*)' # Failed test 'Warn recorded for transferring items' # at t/db_dependent/Koha/EDI.t line 728. # '' # doesn't match '(?^u:transferring.*)' # Failed test 'Warn recorded for unmatched item' # at t/db_dependent/Koha/EDI.t line 728. # '' # doesn't match '(?^u:Unmatched item at branch:.*)' # Looks like you failed 4 tests of 32. --- t/db_dependent/Koha/EDI.t | 1 + 1 file changed, 1 insertion(+) diff --git a/t/db_dependent/Koha/EDI.t b/t/db_dependent/Koha/EDI.t index d136b6f08f6..7bf26785cd8 100755 --- a/t/db_dependent/Koha/EDI.t +++ b/t/db_dependent/Koha/EDI.t @@ -687,6 +687,7 @@ subtest 'process_invoice' => sub { value => { basketno => $basket->id, orderstatus => 'new', + quantity => 3, } } ); -- 2.34.1