From 673269fdcfb33ae7eef290d5908ea021ee945d9d Mon Sep 17 00:00:00 2001 From: Hussain Nagaria Date: Sat, 21 Dec 2024 13:13:22 +0530 Subject: [PATCH] fix: typo in test controller boilerplate --- frappe/core/doctype/doctype/boilerplate/test_controller._py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frappe/core/doctype/doctype/boilerplate/test_controller._py b/frappe/core/doctype/doctype/boilerplate/test_controller._py index fcad426c6c..1baf2e1ffa 100644 --- a/frappe/core/doctype/doctype/boilerplate/test_controller._py +++ b/frappe/core/doctype/doctype/boilerplate/test_controller._py @@ -6,7 +6,7 @@ from frappe.tests import IntegrationTestCase, UnitTestCase # On IntegrationTestCase, the doctype test records and all -# link-field test record depdendencies are recursively loaded +# link-field test record dependencies are recursively loaded # Use these module variables to add/remove to/from that list EXTRA_TEST_RECORD_DEPENDENCIES = [] # eg. ["User"] IGNORE_TEST_RECORD_DEPENDENCIES = [] # eg. ["User"]