Merge pull request #409 from shariquerik/fix-unit-test-issue
test: fixed failing unit test
This commit is contained in:
commit
8391d488ea
@ -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
|
||||
|
||||
@ -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
|
||||
|
||||
@ -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
|
||||
|
||||
@ -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
|
||||
|
||||
@ -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
|
||||
|
||||
@ -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
|
||||
|
||||
@ -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
|
||||
|
||||
@ -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
|
||||
|
||||
@ -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
|
||||
|
||||
@ -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
|
||||
|
||||
@ -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
|
||||
|
||||
@ -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
|
||||
|
||||
@ -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
|
||||
|
||||
@ -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
|
||||
|
||||
@ -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
|
||||
|
||||
@ -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
|
||||
|
||||
@ -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
|
||||
|
||||
@ -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
|
||||
|
||||
@ -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
|
||||
|
||||
@ -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
|
||||
|
||||
@ -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
|
||||
|
||||
@ -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
|
||||
|
||||
@ -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
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user