Browse Source

Merge pull request #16168 from ChillarAnand/boiler

fix: Inherit from FrappeTestCase in template
version-14
mergify[bot] 3 years ago
committed by GitHub
parent
commit
ba75b3b605
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 2 deletions
  1. +3
    -2
      frappe/core/doctype/doctype/boilerplate/test_controller._py

+ 3
- 2
frappe/core/doctype/doctype/boilerplate/test_controller._py View File

@@ -2,7 +2,8 @@
# See license.txt

# import frappe
import unittest
from frappe.tests.utils import FrappeTestCase

class Test{classname}(unittest.TestCase):

class Test{classname}(FrappeTestCase):
pass

Loading…
Cancel
Save