diff --git a/frappe/core/doctype/doctype/boilerplate/test_controller._py b/frappe/core/doctype/doctype/boilerplate/test_controller._py index cbc58e587b..fcad426c6c 100644 --- a/frappe/core/doctype/doctype/boilerplate/test_controller._py +++ b/frappe/core/doctype/doctype/boilerplate/test_controller._py @@ -12,7 +12,7 @@ EXTRA_TEST_RECORD_DEPENDENCIES = [] # eg. ["User"] IGNORE_TEST_RECORD_DEPENDENCIES = [] # eg. ["User"] -class Test{classname}(UnitTestCase): +class UnitTest{classname}(UnitTestCase): """ Unit tests for {classname}. Use this class for testing individual functions and methods. @@ -21,7 +21,7 @@ class Test{classname}(UnitTestCase): pass -class Test{classname}(IntegrationTestCase): +class IntegrationTest{classname}(IntegrationTestCase): """ Integration tests for {classname}. Use this class for testing interactions between multiple components.