From d99983db8472b74450bbc27837c655ee27b6fbf7 Mon Sep 17 00:00:00 2001 From: oca-git-bot Date: Wed, 30 Mar 2022 21:38:04 +0200 Subject: [PATCH] [IMP] update dotfiles --- .../tests/test_account_move_template_options.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/account_move_template/tests/test_account_move_template_options.py b/account_move_template/tests/test_account_move_template_options.py index e8fc84b7..a5310814 100644 --- a/account_move_template/tests/test_account_move_template_options.py +++ b/account_move_template/tests/test_account_move_template_options.py @@ -77,7 +77,7 @@ class TestAccountMoveTemplateEnhanced(TransactionCase): ) def test_move_template_normal(self): - """ Test normal case, input amount 300 """ + """Test normal case, input amount 300""" with Form(self.env["account.move.template.run"]) as f: f.template_id = self.move_template template_run = f.save() @@ -103,7 +103,7 @@ class TestAccountMoveTemplateEnhanced(TransactionCase): ) def test_move_template_optional(self): - """ Test optional case, input amount -300, expect optional account """ + """Test optional case, input amount -300, expect optional account""" with Form(self.env["account.move.template.run"]) as f: f.template_id = self.move_template template_run = f.save() @@ -129,7 +129,7 @@ class TestAccountMoveTemplateEnhanced(TransactionCase): ) def test_move_template_overwrite(self): - """ Test case overwrite, amount = 3000, no need to manual input """ + """Test case overwrite, amount = 3000, no need to manual input""" # Test for error when debit is not a valid field with Form(self.env["account.move.template.run"]) as f: f.template_id = self.move_template