From 29a705d71c68cedaed6acc1039c90a62fddefc5d Mon Sep 17 00:00:00 2001 From: Raf Ven Date: Tue, 23 Apr 2019 11:48:58 +0200 Subject: [PATCH] [12.0] [FIX] Failing test test_account_payment_02 --- account_payment_order/tests/test_account_payment.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/account_payment_order/tests/test_account_payment.py b/account_payment_order/tests/test_account_payment.py index fcd32bb41..e8f98b52e 100644 --- a/account_payment_order/tests/test_account_payment.py +++ b/account_payment_order/tests/test_account_payment.py @@ -28,6 +28,8 @@ class TestAccountPayment(SavepointCase): cls.bank_journal.inbound_payment_method_ids = [ (6, 0, [cls.inbound_payment_method_01.id, cls.inbound_payment_method_02.id])] + cls.bank_journal.outbound_payment_method_ids = [ + (6, 0, [cls.outbound_payment_method_01.id])] def test_account_payment_01(self): self.assertFalse(self.inbound_payment_method_01.payment_order_only)