From 4f3ac104c4ec12a1efd9c5b7d231941125ea5d60 Mon Sep 17 00:00:00 2001 From: Marcel de Rooy Date: Wed, 28 Jun 2023 13:52:24 +0000 Subject: [PATCH] Bug 33537: Add undefined default value for belongs_to in TestBuilder Content-Type: text/plain; charset=utf-8 Test plan: See next patch. It calls build_object without specifying belongs_to. Signed-off-by: Marcel de Rooy Signed-off-by: Pedro Amorim --- t/lib/TestBuilder.pm | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/t/lib/TestBuilder.pm b/t/lib/TestBuilder.pm index ff2450852b..132c7b09ac 100644 --- a/t/lib/TestBuilder.pm +++ b/t/lib/TestBuilder.pm @@ -663,7 +663,10 @@ sub _gen_default_values { closure_reason => undef, renewal_priority => undef, vendor_id => undef, - }, + }, + MailDomainLimit => { + belongs_to => undef, + }, }; } -- 2.30.2