mirror of
https://github.com/frappe/erpnext.git
synced 2026-05-24 23:49:19 +00:00
refactor: Use IntegrationTestCase in multiple files
Signed-off-by: David <dgx.arnold@gmail.com>
This commit is contained in:
@@ -2,13 +2,14 @@ import unittest
|
||||
from uuid import uuid4 as _uuid4
|
||||
|
||||
import frappe
|
||||
from frappe.tests import IntegrationTestCase
|
||||
|
||||
|
||||
def uuid4():
|
||||
return str(_uuid4())
|
||||
|
||||
|
||||
class TestTaxes(unittest.TestCase):
|
||||
class TestTaxes(IntegrationTestCase):
|
||||
def setUp(self):
|
||||
self.company = frappe.get_doc(
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user