Skip to content

Commit

Permalink
chore: linting
Browse files Browse the repository at this point in the history
  • Loading branch information
casesolved-co-uk committed Jun 6, 2024
1 parent 7079599 commit d71be93
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions erpnext/manufacturing/doctype/work_order/test_work_order.py
Original file line number Diff line number Diff line change
Expand Up @@ -1569,7 +1569,7 @@ def test_backflushed_batch_raw_materials_based_on_transferred_autosabb(self):
self.assertEqual(transferred_ste_doc.items[0].qty, 4.0)

# Make additional consumption and link to WO
consume_add_doc = test_stock_entry.make_stock_entry(
test_stock_entry.make_stock_entry(
item_code="Test Batch Battery Consumable",
target="Stores - _TC",
qty=8,
Expand Down Expand Up @@ -1635,7 +1635,7 @@ def test_backflushed_serial_no_raw_materials_based_on_transferred_autosabb(self)
self.assertEqual(transferred_ste_doc.items[0].qty, 4.0)

# Make additional consumption and link to WO
consume_add_doc = test_stock_entry.make_stock_entry(
test_stock_entry.make_stock_entry(
item_code="Test Serial Battery Consumable",
target="Stores - _TC",
qty=8,
Expand Down Expand Up @@ -2352,7 +2352,7 @@ def prepare_data_for_backflush_based_on_materials_transferred():
make_bom(item=item.name, source_warehouse="Stores - _TC", raw_materials=[batch_item_doc.name])

# Make additional items not attached to a BOM
consumable_batch_item_doc = make_item(
make_item(
"Test Batch Battery Consumable",
{
"is_stock_item": 1,
Expand All @@ -2363,7 +2363,7 @@ def prepare_data_for_backflush_based_on_materials_transferred():
"stock_uom": "Nos",
},
)
consumable_serial_item_doc = make_item(
make_item(
"Test Serial Battery Consumable",
{
"is_stock_item": 1,
Expand Down

0 comments on commit d71be93

Please sign in to comment.