From 9b80feae6ce005c6bdf9755552709d70ffc6298b Mon Sep 17 00:00:00 2001 From: Lucas Gass Date: Thu, 4 Sep 2025 13:20:05 +0000 Subject: [PATCH] Bug 9762: (follow-up) Add Test::NoWarnings to CanBookBeIssued.t Without this patch: prove -v /kohadevbox/koha/xt/use-test-no-warnings.t fails With this patch: prove -v /kohadevbox/koha/xt/use-test-no-warnings.t passes --- t/db_dependent/Circulation/CanBookBeIssued.t | 1 + 1 file changed, 1 insertion(+) diff --git a/t/db_dependent/Circulation/CanBookBeIssued.t b/t/db_dependent/Circulation/CanBookBeIssued.t index 2f84b4a1cf0..e337e3d2498 100755 --- a/t/db_dependent/Circulation/CanBookBeIssued.t +++ b/t/db_dependent/Circulation/CanBookBeIssued.t @@ -29,6 +29,7 @@ use Koha::CirculationRules; use Koha::DateUtils qw( dt_from_string ); use t::lib::TestBuilder; use t::lib::Mocks; +use Test::NoWarnings; my $builder = t::lib::TestBuilder->new; -- 2.39.5