From abf05d8c4c7ff240c471f499c46a9090b0e2a3d9 Mon Sep 17 00:00:00 2001 From: Anand Doshi Date: Fri, 23 Jan 2015 12:35:26 +0530 Subject: [PATCH] [minor] Fixed Test Case of Customize Form --- frappe/core/doctype/customize_form/test_customize_form.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frappe/core/doctype/customize_form/test_customize_form.py b/frappe/core/doctype/customize_form/test_customize_form.py index db4115fb8b..5f65b9e4a4 100644 --- a/frappe/core/doctype/customize_form/test_customize_form.py +++ b/frappe/core/doctype/customize_form/test_customize_form.py @@ -47,7 +47,7 @@ class TestCustomizeForm(unittest.TestCase): d = self.get_customize_form("User") self.assertEquals(d.doc_type, "User") - self.assertEquals(len(d.get("customize_form_fields")), 55) + self.assertEquals(len(d.get("customize_form_fields")), 48) self.assertEquals(d.get("customize_form_fields")[-1].fieldname, "test_custom_field") self.assertEquals(d.get("customize_form_fields", {"fieldname": "location"})[0].in_list_view, 1)