From 6f47a6f08a773c8ab2683745747fb6654f33ef7a Mon Sep 17 00:00:00 2001 From: Alexis de Lattre Date: Mon, 1 Apr 2019 19:24:54 +0200 Subject: [PATCH] Fix odoo version in travis config Continue to remove dep on demo data in tests --- .travis.yml | 2 +- crm_phone/tests/test_crm_phone.py | 10 ++++++---- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/.travis.yml b/.travis.yml index 0b948cd..db84cf4 100644 --- a/.travis.yml +++ b/.travis.yml @@ -15,7 +15,7 @@ python: env: global: - - VERSION="12.0" TESTS="0" LINT_CHECK="0" TRANSIFEX="0" + - VERSION="11.0" TESTS="0" LINT_CHECK="0" TRANSIFEX="0" - TRANSIFEX_USER='transbot@odoo-community.org' - secure: LhS+tozOz65gNeGs3yQ4WQOJ6o4fljCHp/bAyHXj4QqB4NkRj7ajO92ZasvtWA4BbxDjsz+Rie3Ct9zq0Zmg05rCT58TYxoqnq2+rN+ZOqr46VYnzIk4MapHNXLQuXhAfTVqsJRdpJteF7nn2wnnc3ZDAIJTfLmP8v789iIbCcA= diff --git a/crm_phone/tests/test_crm_phone.py b/crm_phone/tests/test_crm_phone.py index 72c300e..c9c1807 100644 --- a/crm_phone/tests/test_crm_phone.py +++ b/crm_phone/tests/test_crm_phone.py @@ -23,11 +23,13 @@ class TestCRMPhone(TransactionCase): self.assertEquals(partner1.phone, '+33 4 72 08 87 32') self.assertEquals(partner1.mobile, '+33 6 42 77 42 66') # Create a partner with country - self.env.ref('base.res_partner_12').country_id =\ - self.env.ref('base.ch').id + parent_partner2 = rpo.create({ + 'name': 'C2C', + 'country_id': self.env.ref('base.ch').id, + }) partner2 = rpo.create({ 'name': 'Joël Grand-Guillaume', - 'parent_id': self.env.ref('base.res_partner_12').id, + 'parent_id': parent_partner2.id, 'phone': '(0) 21 619 10 10', 'mobile': '(0) 79 606 42 42', }) @@ -56,7 +58,7 @@ class TestCRMPhone(TransactionCase): name = pco.get_name_from_phone_number('0642774266') self.assertEquals(name, 'Pierre Paillet') name2 = pco.get_name_from_phone_number('0041216191010') - self.assertEquals(name2, 'Camptocamp, Joël Grand-Guillaume') + self.assertEquals(name2, 'C2C, Joël Grand-Guillaume') # Test against the POS bug # https://github.com/OCA/connector-telephony/issues/113 # When we edit/create a partner from the POS,