From 457776e1ba69c1951a3119804122c90bf9246e40 Mon Sep 17 00:00:00 2001 From: Kyle M Hall Date: Fri, 9 Jan 2026 07:42:49 -0500 Subject: [PATCH] Bug 32370: (QA follow-up) Add https to license url, use Test::NoWarnings Signed-off-by: Kyle M Hall --- Koha/Object/JSONFields.pm | 2 +- t/db_dependent/Koha/Object/JSONField.t | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/Koha/Object/JSONFields.pm b/Koha/Object/JSONFields.pm index a13c2ad6d33..98f5be0a901 100644 --- a/Koha/Object/JSONFields.pm +++ b/Koha/Object/JSONFields.pm @@ -13,7 +13,7 @@ package Koha::Object::JSONFields; # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License -# along with Koha; if not, see . +# along with Koha; if not, see . use Modern::Perl; diff --git a/t/db_dependent/Koha/Object/JSONField.t b/t/db_dependent/Koha/Object/JSONField.t index 41b58f88cae..e3c9792d886 100755 --- a/t/db_dependent/Koha/Object/JSONField.t +++ b/t/db_dependent/Koha/Object/JSONField.t @@ -15,14 +15,15 @@ # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License -# along with Koha; if not, see . +# along with Koha; if not, see . use Modern::Perl; use utf8; -use Test::More tests => 1; +use Test::More tests => 2; use Test::Exception; +use Test::NoWarnings; use Koha::Auth::Identity::Providers; -- 2.50.1 (Apple Git-155)