From a5c9ac093273cc4c714a335eb6beeddae8347d61 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 5facaaed78a..686036b2fd2 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 cfb3ff2e3b8..4d1c9ffc587 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