From d7b131780fd356fd6c53ceab9227a0003cc863a6 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Tue, 2 Sep 2025 12:37:55 +0200 Subject: [PATCH] Bug 40680: Fix t/Labels* Attempt to call undefined import method with arguments (split_callnumber) via package C4::ClassSplitRoutine::LCC (Perhaps you forgot to load the package?) at t/Labels.t line 22. --- t/Labels.t | 2 +- t/Labels_split_lccn.t | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/t/Labels.t b/t/Labels.t index e6764d4e4b1..e7335cce921 100755 --- a/t/Labels.t +++ b/t/Labels.t @@ -19,7 +19,7 @@ use Modern::Perl; -use C4::ClassSplitRoutine::LCC qw( split_callnumber ); +use C4::ClassSplitRoutine::LCC; use Test::More tests => 12; use Test::NoWarnings; diff --git a/t/Labels_split_lccn.t b/t/Labels_split_lccn.t index 7b69fd34a16..84fae5b0ee4 100755 --- a/t/Labels_split_lccn.t +++ b/t/Labels_split_lccn.t @@ -19,7 +19,7 @@ use Modern::Perl; -use C4::ClassSplitRoutine::LCC qw( split_callnumber ); +use C4::ClassSplitRoutine::LCC; use Test::NoWarnings; use Test::More; -- 2.34.1