From 0e3b4e6bd17c8c1a568b55ba4f29ff969d8e858e Mon Sep 17 00:00:00 2001 From: Jordi Ballester Date: Thu, 12 May 2022 17:14:39 +0200 Subject: [PATCH] fixup! --- .../tests/test_account_move_line_rma_order_line.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/account_move_line_rma_order_line/tests/test_account_move_line_rma_order_line.py b/account_move_line_rma_order_line/tests/test_account_move_line_rma_order_line.py index 8b442258..f9a1102b 100644 --- a/account_move_line_rma_order_line/tests/test_account_move_line_rma_order_line.py +++ b/account_move_line_rma_order_line/tests/test_account_move_line_rma_order_line.py @@ -82,9 +82,9 @@ class TestAccountMoveLineRmaOrderLine(common.SavepointCase): return user.id @classmethod - def _create_account_type(cls, name, account_type, internal_group): + def _create_account_type(cls, name, atype, internal_group): acc_type = cls.acc_type_model.create( - {"name": name, "type": account_type, "internal_group": internal_group} + {"name": name, "type": atype, "internal_group": internal_group} ) return acc_type