From f8bebfc09a15a5314d2fcd12208cf23a6b566285 Mon Sep 17 00:00:00 2001 From: Marcel de Rooy Date: Thu, 13 Dec 2018 13:07:48 +0100 Subject: [PATCH] Bug 21848: Resolve unac_string warning from Circulation.t Just add "use utf8". Test plan: Run Circulation.t; verify there are no warnings. Signed-off-by: Marcel de Rooy Signed-off-by: Jonathan Druart Signed-off-by: Nick Clemens (cherry picked from commit 3e731ce09433cf2121332f5356b27f90ccb34654) Signed-off-by: Martin Renvoize (cherry picked from commit 4dbb5e636093c9145dc3f3d02de4b119d93b13fb) Signed-off-by: Lucas Gass --- t/db_dependent/Circulation.t | 1 + 1 file changed, 1 insertion(+) diff --git a/t/db_dependent/Circulation.t b/t/db_dependent/Circulation.t index 3c5a552e32..5840ccb12f 100755 --- a/t/db_dependent/Circulation.t +++ b/t/db_dependent/Circulation.t @@ -16,6 +16,7 @@ # along with Koha; if not, see . use Modern::Perl; +use utf8; use Test::More tests => 121; -- 2.39.2