We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9df3ea4 commit cb47543Copy full SHA for cb47543
3 files changed
product_contract/tests/test_product.py
@@ -28,7 +28,7 @@ def test_change_is_contract(self):
28
self.service_product.is_contract = True
29
self.service_product.property_contract_template_id = self.contract.id
30
self.service_product.is_contract = False
31
- self.assertEquals(len(self.service_product.property_contract_template_id), 0)
+ self.assertEqual(len(self.service_product.property_contract_template_id), 0)
32
33
def test_check_contract_product_type(self):
34
"""
setup/product_contract/odoo/addons/product_contract
@@ -0,0 +1 @@
1
+../../../../product_contract
setup/product_contract/setup.py
@@ -0,0 +1,6 @@
+import setuptools
2
+
3
+setuptools.setup(
4
+ setup_requires=['setuptools-odoo'],
5
+ odoo_addon=True,
6
+)
0 commit comments