From 2e98a1c3f7c4ddd1beef5308c8eb9842b13db991 Mon Sep 17 00:00:00 2001 From: AaronHForgeFlow Date: Fri, 22 Apr 2022 11:18:24 +0200 Subject: [PATCH] [IMP] account_move_line_rma_order_line: cosmetics because of update copier template --- .../tests/test_account_move_line_rma_order_line.py | 6 +++--- 1 file changed, 3 insertions(+), 3 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 766c1ba4..8907d16d 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 @@ -66,7 +66,7 @@ class TestAccountMoveLineRmaOrderLine(common.SavepointCase): @classmethod def _create_user(cls, login, groups, company): - """ Create a user.""" + """Create a user.""" group_ids = [group.id for group in groups] user = cls.res_users_model.with_context({"no_reset_password": True}).create( { @@ -82,9 +82,9 @@ class TestAccountMoveLineRmaOrderLine(common.SavepointCase): return user.id @classmethod - def _create_account_type(cls, name, type, internal_group): + def _create_account_type(cls, name, atype, internal_group): acc_type = cls.acc_type_model.create( - {"name": name, "type": type, "internal_group": internal_group} + {"name": name, "type": atype, "internal_group": internal_group} ) return acc_type