From 02a9678a69e07b0f6ec612cf135de48a0d8bc249 Mon Sep 17 00:00:00 2001 From: Andhitia Rama Date: Mon, 12 Mar 2018 22:01:02 +0700 Subject: [PATCH] Fix flake8 --- mrp_production_request/tests/test_mrp_production_request.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/mrp_production_request/tests/test_mrp_production_request.py b/mrp_production_request/tests/test_mrp_production_request.py index 4d31201a7..a71a3a631 100644 --- a/mrp_production_request/tests/test_mrp_production_request.py +++ b/mrp_production_request/tests/test_mrp_production_request.py @@ -133,7 +133,8 @@ class TestMrpProductionRequest(TransactionCase): def test_raise_errors(self): """Tests user errors raising properly.""" - proc_no_bom = self.create_procurement_no_bom('TEST/05', self.test_product) + proc_no_bom = self.create_procurement_no_bom( + 'TEST/05', self.test_product) proc_no_bom.run() self.assertEqual(proc_no_bom.state, 'exception') proc = self.create_procurement('TEST/05', self.product)