From 847c1de0363418b25765cab1273b6ed3b8b1e414 Mon Sep 17 00:00:00 2001 From: Marcel de Rooy Date: Thu, 16 Mar 2023 15:41:33 +0000 Subject: [PATCH] Bug 33245: TestBuilder: Default value for anonymized Content-Type: text/plain; charset=utf-8 When we create a patron with TestBuilder, we normally do not expect an anonymized status. This will certainly hold for the patrons we are creating for testing is_active in a following patch. Test plan: Run t/db_dependent/Koha/Patron.t Run t/db_dependent/Koha/Patrons.t Signed-off-by: Marcel de Rooy --- t/lib/TestBuilder.pm | 1 + 1 file changed, 1 insertion(+) diff --git a/t/lib/TestBuilder.pm b/t/lib/TestBuilder.pm index 4e54b1a2b3..481b50c397 100644 --- a/t/lib/TestBuilder.pm +++ b/t/lib/TestBuilder.pm @@ -580,6 +580,7 @@ sub _gen_default_values { borrowernotes => '', secret => undef, password_expiration_date => undef, + anonymized => 0, }, Item => { notforloan => 0, -- 2.30.2