Skip to content

Commit

Permalink
[FIX] stock_picking_mass_action: Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
pausanchezqubiq committed Jun 7, 2023
1 parent 3a1e30e commit 7416174
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion stock_picking_mass_action/tests/test_mass_action.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ def test_mass_action(self):
{"picking_ids": [(4, self.picking.id)]}
)
wiz_tranfer.confirm = True
for line in self.picking.move_lines:
for line in self.picking.move_ids:
line.quantity_done = line.product_uom_qty
wiz_tranfer.mass_action()
self.assertEqual(self.picking.state, "done")
Expand Down

0 comments on commit 7416174

Please sign in to comment.