diff --git a/stock_orderpoint_move_link/__manifest__.py b/stock_orderpoint_move_link/__manifest__.py index 3a7955756..61a5f5f57 100644 --- a/stock_orderpoint_move_link/__manifest__.py +++ b/stock_orderpoint_move_link/__manifest__.py @@ -4,7 +4,7 @@ { "name": "Stock Orderpoint Move Link", "summary": "Link Reordering rules to stock moves", - "version": "13.0.1.0.0", + "version": "14.0.1.0.0", "license": "LGPL-3", "website": "https://github.com/OCA/stock-logistics-warehouse", "author": "ForgeFlow, Odoo Community Association (OCA)", diff --git a/stock_orderpoint_move_link/tests/test_stock_orderpoint_move_link.py b/stock_orderpoint_move_link/tests/test_stock_orderpoint_move_link.py index 64b37431e..505df9f7d 100644 --- a/stock_orderpoint_move_link/tests/test_stock_orderpoint_move_link.py +++ b/stock_orderpoint_move_link/tests/test_stock_orderpoint_move_link.py @@ -113,4 +113,4 @@ class TestStockOrderpointMoveLink(SavepointCase): ).mapped("picking_id") result = self.orderpoint_need_loc.action_view_stock_picking() sp_action = self.picking_obj.search(ast.literal_eval(result["domain"])) - self.assertEquals(sp_orderpoint, sp_action) + self.assertEqual(sp_orderpoint, sp_action)