diff --git a/crm/fcrm/doctype/crm_call_log/test_crm_call_log.py b/crm/fcrm/doctype/crm_call_log/test_crm_call_log.py index 9c8198a4c..34fe2bae8 100644 --- a/crm/fcrm/doctype/crm_call_log/test_crm_call_log.py +++ b/crm/fcrm/doctype/crm_call_log/test_crm_call_log.py @@ -2,8 +2,8 @@ # See license.txt # import frappe -from frappe.tests.utils import FrappeTestCase +from frappe.tests import UnitTestCase -class TestCRMCallLog(FrappeTestCase): +class TestCRMCallLog(UnitTestCase): pass diff --git a/crm/fcrm/doctype/crm_communication_status/test_crm_communication_status.py b/crm/fcrm/doctype/crm_communication_status/test_crm_communication_status.py index 85f289cc5..bf5b69e24 100644 --- a/crm/fcrm/doctype/crm_communication_status/test_crm_communication_status.py +++ b/crm/fcrm/doctype/crm_communication_status/test_crm_communication_status.py @@ -2,8 +2,8 @@ # See license.txt # import frappe -from frappe.tests.utils import FrappeTestCase +from frappe.tests import UnitTestCase -class TestCRMCommunicationStatus(FrappeTestCase): +class TestCRMCommunicationStatus(UnitTestCase): pass diff --git a/crm/fcrm/doctype/crm_deal/test_crm_deal.py b/crm/fcrm/doctype/crm_deal/test_crm_deal.py index b9ecc378a..85ef93310 100644 --- a/crm/fcrm/doctype/crm_deal/test_crm_deal.py +++ b/crm/fcrm/doctype/crm_deal/test_crm_deal.py @@ -2,8 +2,8 @@ # See license.txt # import frappe -from frappe.tests.utils import FrappeTestCase +from frappe.tests import UnitTestCase -class TestCRMDeal(FrappeTestCase): +class TestCRMDeal(UnitTestCase): pass diff --git a/crm/fcrm/doctype/crm_deal_status/test_crm_deal_status.py b/crm/fcrm/doctype/crm_deal_status/test_crm_deal_status.py index b5463dc1c..4e60b78d9 100644 --- a/crm/fcrm/doctype/crm_deal_status/test_crm_deal_status.py +++ b/crm/fcrm/doctype/crm_deal_status/test_crm_deal_status.py @@ -2,8 +2,8 @@ # See license.txt # import frappe -from frappe.tests.utils import FrappeTestCase +from frappe.tests import UnitTestCase -class TestCRMDealStatus(FrappeTestCase): +class TestCRMDealStatus(UnitTestCase): pass diff --git a/crm/fcrm/doctype/crm_fields_layout/test_crm_fields_layout.py b/crm/fcrm/doctype/crm_fields_layout/test_crm_fields_layout.py index bdc71c0a9..6ea73d020 100644 --- a/crm/fcrm/doctype/crm_fields_layout/test_crm_fields_layout.py +++ b/crm/fcrm/doctype/crm_fields_layout/test_crm_fields_layout.py @@ -2,8 +2,8 @@ # See license.txt # import frappe -from frappe.tests.utils import FrappeTestCase +from frappe.tests import UnitTestCase -class TestCRMFieldsLayout(FrappeTestCase): +class TestCRMFieldsLayout(UnitTestCase): pass diff --git a/crm/fcrm/doctype/crm_form_script/test_crm_form_script.py b/crm/fcrm/doctype/crm_form_script/test_crm_form_script.py index ae222e729..f5e8d982c 100644 --- a/crm/fcrm/doctype/crm_form_script/test_crm_form_script.py +++ b/crm/fcrm/doctype/crm_form_script/test_crm_form_script.py @@ -2,8 +2,8 @@ # See license.txt # import frappe -from frappe.tests.utils import FrappeTestCase +from frappe.tests import UnitTestCase -class TestCRMFormScript(FrappeTestCase): +class TestCRMFormScript(UnitTestCase): pass diff --git a/crm/fcrm/doctype/crm_holiday_list/test_crm_holiday_list.py b/crm/fcrm/doctype/crm_holiday_list/test_crm_holiday_list.py index 877548599..ee90dc8a4 100644 --- a/crm/fcrm/doctype/crm_holiday_list/test_crm_holiday_list.py +++ b/crm/fcrm/doctype/crm_holiday_list/test_crm_holiday_list.py @@ -2,8 +2,8 @@ # See license.txt # import frappe -from frappe.tests.utils import FrappeTestCase +from frappe.tests import UnitTestCase -class TestCRMHolidayList(FrappeTestCase): +class TestCRMHolidayList(UnitTestCase): pass diff --git a/crm/fcrm/doctype/crm_industry/test_crm_industry.py b/crm/fcrm/doctype/crm_industry/test_crm_industry.py index 8d23632d4..16d87b134 100644 --- a/crm/fcrm/doctype/crm_industry/test_crm_industry.py +++ b/crm/fcrm/doctype/crm_industry/test_crm_industry.py @@ -2,8 +2,8 @@ # See license.txt # import frappe -from frappe.tests.utils import FrappeTestCase +from frappe.tests import UnitTestCase -class TestCRMIndustry(FrappeTestCase): +class TestCRMIndustry(UnitTestCase): pass diff --git a/crm/fcrm/doctype/crm_invitation/test_crm_invitation.py b/crm/fcrm/doctype/crm_invitation/test_crm_invitation.py index e2b3dc246..ddee0e24f 100644 --- a/crm/fcrm/doctype/crm_invitation/test_crm_invitation.py +++ b/crm/fcrm/doctype/crm_invitation/test_crm_invitation.py @@ -2,8 +2,8 @@ # See license.txt # import frappe -from frappe.tests.utils import FrappeTestCase +from frappe.tests import UnitTestCase -class TestCRMInvitation(FrappeTestCase): +class TestCRMInvitation(UnitTestCase): pass diff --git a/crm/fcrm/doctype/crm_lead/test_crm_lead.py b/crm/fcrm/doctype/crm_lead/test_crm_lead.py index 73a71202a..e730792ea 100644 --- a/crm/fcrm/doctype/crm_lead/test_crm_lead.py +++ b/crm/fcrm/doctype/crm_lead/test_crm_lead.py @@ -2,8 +2,8 @@ # See license.txt # import frappe -from frappe.tests.utils import FrappeTestCase +from frappe.tests import UnitTestCase -class TestCRMLead(FrappeTestCase): +class TestCRMLead(UnitTestCase): pass diff --git a/crm/fcrm/doctype/crm_lead_source/test_crm_lead_source.py b/crm/fcrm/doctype/crm_lead_source/test_crm_lead_source.py index eb9f2c6a7..31d379179 100644 --- a/crm/fcrm/doctype/crm_lead_source/test_crm_lead_source.py +++ b/crm/fcrm/doctype/crm_lead_source/test_crm_lead_source.py @@ -2,8 +2,8 @@ # See license.txt # import frappe -from frappe.tests.utils import FrappeTestCase +from frappe.tests import UnitTestCase -class TestCRMLeadSource(FrappeTestCase): +class TestCRMLeadSource(UnitTestCase): pass diff --git a/crm/fcrm/doctype/crm_lead_status/test_crm_lead_status.py b/crm/fcrm/doctype/crm_lead_status/test_crm_lead_status.py index 9cb24fd49..d542056a6 100644 --- a/crm/fcrm/doctype/crm_lead_status/test_crm_lead_status.py +++ b/crm/fcrm/doctype/crm_lead_status/test_crm_lead_status.py @@ -2,8 +2,8 @@ # See license.txt # import frappe -from frappe.tests.utils import FrappeTestCase +from frappe.tests import UnitTestCase -class TestCRMLeadStatus(FrappeTestCase): +class TestCRMLeadStatus(UnitTestCase): pass diff --git a/crm/fcrm/doctype/crm_notification/test_crm_notification.py b/crm/fcrm/doctype/crm_notification/test_crm_notification.py index e643a91d6..466bad4d1 100644 --- a/crm/fcrm/doctype/crm_notification/test_crm_notification.py +++ b/crm/fcrm/doctype/crm_notification/test_crm_notification.py @@ -2,8 +2,8 @@ # See license.txt # import frappe -from frappe.tests.utils import FrappeTestCase +from frappe.tests import UnitTestCase -class TestCRMNotification(FrappeTestCase): +class TestCRMNotification(UnitTestCase): pass diff --git a/crm/fcrm/doctype/crm_organization/test_crm_organization.py b/crm/fcrm/doctype/crm_organization/test_crm_organization.py index e11be5756..e80667548 100644 --- a/crm/fcrm/doctype/crm_organization/test_crm_organization.py +++ b/crm/fcrm/doctype/crm_organization/test_crm_organization.py @@ -2,8 +2,8 @@ # See license.txt # import frappe -from frappe.tests.utils import FrappeTestCase +from frappe.tests import UnitTestCase -class TestCRMOrganization(FrappeTestCase): +class TestCRMOrganization(UnitTestCase): pass diff --git a/crm/fcrm/doctype/crm_service_level_agreement/test_crm_service_level_agreement.py b/crm/fcrm/doctype/crm_service_level_agreement/test_crm_service_level_agreement.py index 40e2555ea..bf6ae587a 100644 --- a/crm/fcrm/doctype/crm_service_level_agreement/test_crm_service_level_agreement.py +++ b/crm/fcrm/doctype/crm_service_level_agreement/test_crm_service_level_agreement.py @@ -2,8 +2,8 @@ # See license.txt # import frappe -from frappe.tests.utils import FrappeTestCase +from frappe.tests import UnitTestCase -class TestCRMServiceLevelAgreement(FrappeTestCase): +class TestCRMServiceLevelAgreement(UnitTestCase): pass diff --git a/crm/fcrm/doctype/crm_service_level_priority/test_crm_service_level_priority.py b/crm/fcrm/doctype/crm_service_level_priority/test_crm_service_level_priority.py index f1f5448b4..89f9c4e39 100644 --- a/crm/fcrm/doctype/crm_service_level_priority/test_crm_service_level_priority.py +++ b/crm/fcrm/doctype/crm_service_level_priority/test_crm_service_level_priority.py @@ -2,8 +2,8 @@ # See license.txt # import frappe -from frappe.tests.utils import FrappeTestCase +from frappe.tests import UnitTestCase -class TestCRMServiceLevelPriority(FrappeTestCase): +class TestCRMServiceLevelPriority(UnitTestCase): pass diff --git a/crm/fcrm/doctype/crm_task/test_crm_task.py b/crm/fcrm/doctype/crm_task/test_crm_task.py index f83163369..d632cebe2 100644 --- a/crm/fcrm/doctype/crm_task/test_crm_task.py +++ b/crm/fcrm/doctype/crm_task/test_crm_task.py @@ -2,8 +2,8 @@ # See license.txt # import frappe -from frappe.tests.utils import FrappeTestCase +from frappe.tests import UnitTestCase -class TestCRMTask(FrappeTestCase): +class TestCRMTask(UnitTestCase): pass diff --git a/crm/fcrm/doctype/crm_territory/test_crm_territory.py b/crm/fcrm/doctype/crm_territory/test_crm_territory.py index 475707fd2..c1315d940 100644 --- a/crm/fcrm/doctype/crm_territory/test_crm_territory.py +++ b/crm/fcrm/doctype/crm_territory/test_crm_territory.py @@ -2,8 +2,8 @@ # See license.txt # import frappe -from frappe.tests.utils import FrappeTestCase +from frappe.tests import UnitTestCase -class TestCRMTerritory(FrappeTestCase): +class TestCRMTerritory(UnitTestCase): pass diff --git a/crm/fcrm/doctype/crm_view_settings/test_crm_view_settings.py b/crm/fcrm/doctype/crm_view_settings/test_crm_view_settings.py index cd6df2d73..1d002a300 100644 --- a/crm/fcrm/doctype/crm_view_settings/test_crm_view_settings.py +++ b/crm/fcrm/doctype/crm_view_settings/test_crm_view_settings.py @@ -2,8 +2,8 @@ # See license.txt # import frappe -from frappe.tests.utils import FrappeTestCase +from frappe.tests import UnitTestCase -class TestCRMViewSettings(FrappeTestCase): +class TestCRMViewSettings(UnitTestCase): pass diff --git a/crm/fcrm/doctype/erpnext_crm_settings/test_erpnext_crm_settings.py b/crm/fcrm/doctype/erpnext_crm_settings/test_erpnext_crm_settings.py index 17ae02845..937b9ef7a 100644 --- a/crm/fcrm/doctype/erpnext_crm_settings/test_erpnext_crm_settings.py +++ b/crm/fcrm/doctype/erpnext_crm_settings/test_erpnext_crm_settings.py @@ -2,8 +2,8 @@ # See license.txt # import frappe -from frappe.tests.utils import FrappeTestCase +from frappe.tests import UnitTestCase -class TestERPNextCRMSettings(FrappeTestCase): +class TestERPNextCRMSettings(UnitTestCase): pass diff --git a/crm/fcrm/doctype/fcrm_note/test_fcrm_note.py b/crm/fcrm/doctype/fcrm_note/test_fcrm_note.py index 86635b28c..6a98a6ff2 100644 --- a/crm/fcrm/doctype/fcrm_note/test_fcrm_note.py +++ b/crm/fcrm/doctype/fcrm_note/test_fcrm_note.py @@ -2,8 +2,8 @@ # See license.txt # import frappe -from frappe.tests.utils import FrappeTestCase +from frappe.tests import UnitTestCase -class TestFCRMNote(FrappeTestCase): +class TestFCRMNote(UnitTestCase): pass diff --git a/crm/fcrm/doctype/twilio_agents/test_twilio_agents.py b/crm/fcrm/doctype/twilio_agents/test_twilio_agents.py index 72cdd5cc7..29ecc305a 100644 --- a/crm/fcrm/doctype/twilio_agents/test_twilio_agents.py +++ b/crm/fcrm/doctype/twilio_agents/test_twilio_agents.py @@ -2,8 +2,8 @@ # See license.txt # import frappe -from frappe.tests.utils import FrappeTestCase +from frappe.tests import UnitTestCase -class TestTwilioAgents(FrappeTestCase): +class TestTwilioAgents(UnitTestCase): pass diff --git a/crm/fcrm/doctype/twilio_settings/test_twilio_settings.py b/crm/fcrm/doctype/twilio_settings/test_twilio_settings.py index 095e747ed..21b038410 100644 --- a/crm/fcrm/doctype/twilio_settings/test_twilio_settings.py +++ b/crm/fcrm/doctype/twilio_settings/test_twilio_settings.py @@ -2,8 +2,8 @@ # See license.txt # import frappe -from frappe.tests.utils import FrappeTestCase +from frappe.tests import UnitTestCase -class TestTwilioSettings(FrappeTestCase): +class TestTwilioSettings(UnitTestCase): pass