Skip to content
Snippets Groups Projects
Commit 1693a27f authored by Christophe Simonis's avatar Christophe Simonis
Browse files

[FIX] account: mute logger on expected Exception in test

parent c3764265
No related branches found
No related tags found
No related merge requests found
......@@ -2,6 +2,7 @@
from odoo.addons.account.tests.account_test_classes import AccountingTestCase
from odoo.exceptions import ValidationError
from odoo.tools import mute_logger
import time
......@@ -58,7 +59,8 @@ class TestAccountInvoiceRounding(AccountingTestCase):
# to avoid a ValidationError from _check_cash_rounding because the onchange
# are not well triggered in the tests.
try:
invoice_id.cash_rounding_id = cash_rounding_id
with mute_logger('odoo.models'):
invoice_id.cash_rounding_id = cash_rounding_id
except ValidationError:
pass
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment