1
0
forked from test/crm

Merge pull request #409 from shariquerik/fix-unit-test-issue

test: fixed failing unit test
This commit is contained in:
Shariq Ansari 2024-10-12 13:01:52 +05:30 committed by GitHub
commit 8391d488ea
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
23 changed files with 46 additions and 46 deletions

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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