From 8dcd23deab9488972535733fb7998f86e09df300 Mon Sep 17 00:00:00 2001 From: "Pedro M. Baeza" Date: Fri, 9 Mar 2018 16:58:42 +0100 Subject: [PATCH] [IMP] account_tax_balance: Change tests to post instal and protect again freezes --- account_tax_balance/tests/test_account_tax_balance.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/account_tax_balance/tests/test_account_tax_balance.py b/account_tax_balance/tests/test_account_tax_balance.py index 22da0826..b2bab4dd 100644 --- a/account_tax_balance/tests/test_account_tax_balance.py +++ b/account_tax_balance/tests/test_account_tax_balance.py @@ -4,12 +4,14 @@ # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). from openerp.fields import Date -from openerp.tests.common import TransactionCase +from openerp.tests.common import HttpCase from datetime import datetime from dateutil.rrule import MONTHLY -class TestAccountTaxBalance(TransactionCase): +class TestAccountTaxBalance(HttpCase): + at_install = False + post_install = False def setUp(self): super(TestAccountTaxBalance, self).setUp()