test: fixed failing unit test

This commit is contained in:
Shariq Ansari 2024-10-12 12:50:41 +05:30
parent 590b92c791
commit 0d46df878e
23 changed files with 46 additions and 46 deletions

View File

@ -2,8 +2,8 @@
# See license.txt # See license.txt
# import frappe # import frappe
from frappe.tests.utils import FrappeTestCase from frappe.tests import UnitTestCase
class TestCRMCallLog(FrappeTestCase): class TestCRMCallLog(UnitTestCase):
pass pass

View File

@ -2,8 +2,8 @@
# See license.txt # See license.txt
# import frappe # import frappe
from frappe.tests.utils import FrappeTestCase from frappe.tests import UnitTestCase
class TestCRMCommunicationStatus(FrappeTestCase): class TestCRMCommunicationStatus(UnitTestCase):
pass pass

View File

@ -2,8 +2,8 @@
# See license.txt # See license.txt
# import frappe # import frappe
from frappe.tests.utils import FrappeTestCase from frappe.tests import UnitTestCase
class TestCRMDeal(FrappeTestCase): class TestCRMDeal(UnitTestCase):
pass pass

View File

@ -2,8 +2,8 @@
# See license.txt # See license.txt
# import frappe # import frappe
from frappe.tests.utils import FrappeTestCase from frappe.tests import UnitTestCase
class TestCRMDealStatus(FrappeTestCase): class TestCRMDealStatus(UnitTestCase):
pass pass

View File

@ -2,8 +2,8 @@
# See license.txt # See license.txt
# import frappe # import frappe
from frappe.tests.utils import FrappeTestCase from frappe.tests import UnitTestCase
class TestCRMFieldsLayout(FrappeTestCase): class TestCRMFieldsLayout(UnitTestCase):
pass pass

View File

@ -2,8 +2,8 @@
# See license.txt # See license.txt
# import frappe # import frappe
from frappe.tests.utils import FrappeTestCase from frappe.tests import UnitTestCase
class TestCRMFormScript(FrappeTestCase): class TestCRMFormScript(UnitTestCase):
pass pass

View File

@ -2,8 +2,8 @@
# See license.txt # See license.txt
# import frappe # import frappe
from frappe.tests.utils import FrappeTestCase from frappe.tests import UnitTestCase
class TestCRMHolidayList(FrappeTestCase): class TestCRMHolidayList(UnitTestCase):
pass pass

View File

@ -2,8 +2,8 @@
# See license.txt # See license.txt
# import frappe # import frappe
from frappe.tests.utils import FrappeTestCase from frappe.tests import UnitTestCase
class TestCRMIndustry(FrappeTestCase): class TestCRMIndustry(UnitTestCase):
pass pass

View File

@ -2,8 +2,8 @@
# See license.txt # See license.txt
# import frappe # import frappe
from frappe.tests.utils import FrappeTestCase from frappe.tests import UnitTestCase
class TestCRMInvitation(FrappeTestCase): class TestCRMInvitation(UnitTestCase):
pass pass

View File

@ -2,8 +2,8 @@
# See license.txt # See license.txt
# import frappe # import frappe
from frappe.tests.utils import FrappeTestCase from frappe.tests import UnitTestCase
class TestCRMLead(FrappeTestCase): class TestCRMLead(UnitTestCase):
pass pass

View File

@ -2,8 +2,8 @@
# See license.txt # See license.txt
# import frappe # import frappe
from frappe.tests.utils import FrappeTestCase from frappe.tests import UnitTestCase
class TestCRMLeadSource(FrappeTestCase): class TestCRMLeadSource(UnitTestCase):
pass pass

View File

@ -2,8 +2,8 @@
# See license.txt # See license.txt
# import frappe # import frappe
from frappe.tests.utils import FrappeTestCase from frappe.tests import UnitTestCase
class TestCRMLeadStatus(FrappeTestCase): class TestCRMLeadStatus(UnitTestCase):
pass pass

View File

@ -2,8 +2,8 @@
# See license.txt # See license.txt
# import frappe # import frappe
from frappe.tests.utils import FrappeTestCase from frappe.tests import UnitTestCase
class TestCRMNotification(FrappeTestCase): class TestCRMNotification(UnitTestCase):
pass pass

View File

@ -2,8 +2,8 @@
# See license.txt # See license.txt
# import frappe # import frappe
from frappe.tests.utils import FrappeTestCase from frappe.tests import UnitTestCase
class TestCRMOrganization(FrappeTestCase): class TestCRMOrganization(UnitTestCase):
pass pass

View File

@ -2,8 +2,8 @@
# See license.txt # See license.txt
# import frappe # import frappe
from frappe.tests.utils import FrappeTestCase from frappe.tests import UnitTestCase
class TestCRMServiceLevelAgreement(FrappeTestCase): class TestCRMServiceLevelAgreement(UnitTestCase):
pass pass

View File

@ -2,8 +2,8 @@
# See license.txt # See license.txt
# import frappe # import frappe
from frappe.tests.utils import FrappeTestCase from frappe.tests import UnitTestCase
class TestCRMServiceLevelPriority(FrappeTestCase): class TestCRMServiceLevelPriority(UnitTestCase):
pass pass

View File

@ -2,8 +2,8 @@
# See license.txt # See license.txt
# import frappe # import frappe
from frappe.tests.utils import FrappeTestCase from frappe.tests import UnitTestCase
class TestCRMTask(FrappeTestCase): class TestCRMTask(UnitTestCase):
pass pass

View File

@ -2,8 +2,8 @@
# See license.txt # See license.txt
# import frappe # import frappe
from frappe.tests.utils import FrappeTestCase from frappe.tests import UnitTestCase
class TestCRMTerritory(FrappeTestCase): class TestCRMTerritory(UnitTestCase):
pass pass

View File

@ -2,8 +2,8 @@
# See license.txt # See license.txt
# import frappe # import frappe
from frappe.tests.utils import FrappeTestCase from frappe.tests import UnitTestCase
class TestCRMViewSettings(FrappeTestCase): class TestCRMViewSettings(UnitTestCase):
pass pass

View File

@ -2,8 +2,8 @@
# See license.txt # See license.txt
# import frappe # import frappe
from frappe.tests.utils import FrappeTestCase from frappe.tests import UnitTestCase
class TestERPNextCRMSettings(FrappeTestCase): class TestERPNextCRMSettings(UnitTestCase):
pass pass

View File

@ -2,8 +2,8 @@
# See license.txt # See license.txt
# import frappe # import frappe
from frappe.tests.utils import FrappeTestCase from frappe.tests import UnitTestCase
class TestFCRMNote(FrappeTestCase): class TestFCRMNote(UnitTestCase):
pass pass

View File

@ -2,8 +2,8 @@
# See license.txt # See license.txt
# import frappe # import frappe
from frappe.tests.utils import FrappeTestCase from frappe.tests import UnitTestCase
class TestTwilioAgents(FrappeTestCase): class TestTwilioAgents(UnitTestCase):
pass pass

View File

@ -2,8 +2,8 @@
# See license.txt # See license.txt
# import frappe # import frappe
from frappe.tests.utils import FrappeTestCase from frappe.tests import UnitTestCase
class TestTwilioSettings(FrappeTestCase): class TestTwilioSettings(UnitTestCase):
pass pass