Skip to content

Commit

Permalink
[FIX] cmis_field: rename odoo->openerp into the code backported from …
Browse files Browse the repository at this point in the history
…10.0
  • Loading branch information
lmignon committed Sep 11, 2018
1 parent 8ac270b commit 2a25e91
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cmis_field/tests/test_fields.py
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ def test_delegated_cmis_folder(self):
# are property called.
inst = self.env['cmis.test.model.inherits'].create(
{'name': 'folder_name'})
with mock.patch("odoo.addons.cmis.models.cmis_backend."
with mock.patch("openerp.addons.cmis.models.cmis_backend."
"CmisBackend.get_cmis_repository") as \
mocked_get_repository:
mocked_cmis_repository = mock.MagicMock()
Expand Down Expand Up @@ -168,7 +168,7 @@ def test_related_cmis_folder(self):
'name': 'folder_name',
'cmis_test_model_id': parent.id
})
with mock.patch("odoo.addons.cmis.models.cmis_backend."
with mock.patch("openerp.addons.cmis.models.cmis_backend."
"CmisBackend.get_cmis_repository") as \
mocked_get_repository:
mocked_cmis_repository = mock.MagicMock()
Expand Down

0 comments on commit 2a25e91

Please sign in to comment.