From 6ce6ac8fa1e26121e5a53de5044963675e725d36 Mon Sep 17 00:00:00 2001 From: Mason James Date: Wed, 24 Nov 2021 14:57:51 +1300 Subject: [PATCH] Bug 29564: Use List::MoreUtils so SIP U16/Xenial does not break Content-Type: text/plain; charset="utf-8" - run prove t/00-load.t, see error - apply patch 00:07:08.189 koha_1 | # Failed test 'use C4::SIP::Sip::Configuration;' 00:07:08.189 koha_1 | # at t/00-load.t line 46. 00:07:08.189 koha_1 | # Tried to use 'C4::SIP::Sip::Configuration'. 00:07:08.189 koha_1 | # Error: "uniq" is not exported by the List::Util module - run prove t/00-load.t, see tests pass :0) https://bugs.koha-community.org/show_bug.cgi?id=29478 https://bugs.koha-community.org/show_bug.cgi?id=29564 --- C4/SIP/Sip/Configuration.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/C4/SIP/Sip/Configuration.pm b/C4/SIP/Sip/Configuration.pm index 006d6b5cf3..819ec1d486 100644 --- a/C4/SIP/Sip/Configuration.pm +++ b/C4/SIP/Sip/Configuration.pm @@ -9,7 +9,7 @@ package C4::SIP::Sip::Configuration; use strict; use warnings; use XML::Simple qw(:strict); -use List::Util qw(uniq); +use List::MoreUtils qw(uniq); use C4::SIP::Sip qw(siplog); use Koha::Libraries; -- 2.20.1