From fa6744beaa8d0ab7f0f5e76ae32b181afd70f002 Mon Sep 17 00:00:00 2001 From: sokumon Date: Fri, 2 Jan 2026 18:50:24 +0530 Subject: [PATCH] fix(test): note customization yields tuple with 3 values --- frappe/tests/test_modules.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frappe/tests/test_modules.py b/frappe/tests/test_modules.py index a03e427fba..5adebb5af2 100644 --- a/frappe/tests/test_modules.py +++ b/frappe/tests/test_modules.py @@ -89,7 +89,7 @@ class TestUtils(IntegrationTestCase): ) def test_export_customizations_with_module_filter(self): # create two customizations, one matching the module, one under a different module - with note_customizations() as (custom_field, property_setter): + with note_customizations() as (custom_field, property_setter, _doctype_link): custom_field.db_set("module", "Custom") property_setter.db_set("module", "Custom")