diff --git a/account_partner_reconcile/README.rst b/account_partner_reconcile/README.rst index c073f784..6c22a930 100644 --- a/account_partner_reconcile/README.rst +++ b/account_partner_reconcile/README.rst @@ -17,7 +17,7 @@ The button is visible only to users that belong to the accounting groups .. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas :alt: Try me on Runbot - :target: https://runbot.odoo-community.org/runbot/96/10.0 + :target: https://runbot.odoo-community.org/runbot/96/11.0 Bug Tracker =========== @@ -35,6 +35,7 @@ Contributors ------------ * Jordi Ballester +* Jaume Planas Maintainer ---------- diff --git a/account_partner_reconcile/__init__.py b/account_partner_reconcile/__init__.py index a0fdc10f..0650744f 100644 --- a/account_partner_reconcile/__init__.py +++ b/account_partner_reconcile/__init__.py @@ -1,2 +1 @@ -# -*- coding: utf-8 -*- from . import models diff --git a/account_partner_reconcile/__manifest__.py b/account_partner_reconcile/__manifest__.py index b542616b..d9d60297 100644 --- a/account_partner_reconcile/__manifest__.py +++ b/account_partner_reconcile/__manifest__.py @@ -1,11 +1,10 @@ -# -*- coding: utf-8 -*- # © 2017 Eficent Business and IT Consulting Services S.L. # (http://www.eficent.com) # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). { 'name': "Account Partner Reconcile", - 'version': '10.0.1.0.0', + 'version': '11.0.1.0.0', 'category': 'Accounting', 'author': 'Eficent,' 'Odoo Community Association (OCA), ', diff --git a/account_partner_reconcile/models/__init__.py b/account_partner_reconcile/models/__init__.py index 0fbdfcf8..91fed54d 100644 --- a/account_partner_reconcile/models/__init__.py +++ b/account_partner_reconcile/models/__init__.py @@ -1,2 +1 @@ -# -*- coding: utf-8 -*- from . import res_partner diff --git a/account_partner_reconcile/models/res_partner.py b/account_partner_reconcile/models/res_partner.py index b279dfc2..1b299e97 100644 --- a/account_partner_reconcile/models/res_partner.py +++ b/account_partner_reconcile/models/res_partner.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # © 2017 Eficent Business and IT Consulting Services S.L. # (http://www.eficent.com) # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). diff --git a/account_partner_reconcile/tests/__init__.py b/account_partner_reconcile/tests/__init__.py index 16bbafad..2d8892c4 100644 --- a/account_partner_reconcile/tests/__init__.py +++ b/account_partner_reconcile/tests/__init__.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright 2017 Eficent Business and IT Consulting Services S.L. # (http://www.eficent.com) # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). diff --git a/account_partner_reconcile/tests/test_account_partner_reconcile.py b/account_partner_reconcile/tests/test_account_partner_reconcile.py index 7b1378df..a84230dc 100644 --- a/account_partner_reconcile/tests/test_account_partner_reconcile.py +++ b/account_partner_reconcile/tests/test_account_partner_reconcile.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright 2017 Eficent Business and IT Consulting Services S.L. # (http://www.eficent.com) # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). @@ -10,29 +9,30 @@ class TestAccountPartnerReconcile(TransactionCase): """ Tests for Account Partner Reconcile. """ + def setUp(self): super(TestAccountPartnerReconcile, self).setUp() self.partner1 = self.env.ref('base.res_partner_1') def test_account_partner_reconcile(self): - res = self.partner1.action_open_reconcile() - self.assertDictContainsSubset( - { - 'type': 'ir.actions.client', - 'tag': 'manual_reconciliation_view', - }, - res, + + # assertDictContainsSubset is deprecated in Python <3.2 + expect = { + 'type': 'ir.actions.client', + 'tag': 'manual_reconciliation_view', + } + self.assertDictEqual( + expect, {k: v for k, v in res.items() if k in expect}, 'There was an error and the manual_reconciliation_view ' - 'couldn\'t be opened.' - ) - self.assertDictContainsSubset( - { - 'partner_ids': self.partner1.ids, - 'show_mode_selector': True, - }, - res['context'], + 'couldn\'t be opened.') + + expect = { + 'partner_ids': self.partner1.ids, + 'show_mode_selector': True, + } + self.assertDictEqual( + expect, {k: v for k, v in res['context'].items() if k in expect}, 'There was an error and the manual_reconciliation_view ' - 'couldn\'t be opened.' - ) + 'couldn\'t be opened.')