From affbdfd491a8398f748a11f6c0ce009dd3282d9b Mon Sep 17 00:00:00 2001 From: Martin Renvoize Date: Wed, 23 Jul 2025 10:52:33 +0100 Subject: [PATCH] Bug 40387: Comment some of the superflous diag The test output was a little verbose in places, however the diag's can be helpful when debugging failures. I've opted to comment rather than completely remove them. --- t/db_dependent/Koha/EDI.t | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/t/db_dependent/Koha/EDI.t b/t/db_dependent/Koha/EDI.t index 46a876cfb71..d136b6f08f6 100755 --- a/t/db_dependent/Koha/EDI.t +++ b/t/db_dependent/Koha/EDI.t @@ -397,7 +397,8 @@ subtest 'process_quote' => sub { my $orderline = 0; while ( my $order = $orders->next ) { $orderline++; - diag( "Looking at order: " . $orderline ); + + #diag( "Looking at order: " . $orderline ); if ( $orderline == 1 ) { # Fund allocation @@ -442,7 +443,8 @@ subtest 'process_quote' => sub { is( $rotas{'FAST'}, 1, "One item added to 'FAST' rota" ); is( $rotas{'SLOW'}, 1, "One item added to 'SLOW' rota" ); } elsif ( $orderline == 3 ) { - diag("Second LIN split into 2 Orderlines, one for each Fund"); + + #diag("Second LIN split into 2 Orderlines, one for each Fund"); # Fund allocation my $fund = $order->fund; -- 2.50.1