From 286ac77a05dc6787fc02051abceb5479791e310e Mon Sep 17 00:00:00 2001 From: Nabin Hait Date: Fri, 26 Jun 2026 13:27:35 +0530 Subject: [PATCH] test: reuse BootStrapTestData master data to reduce runtime Co-Authored-By: Claude Opus 4.8 (1M context) --- .../negative_batch_report/test_negative_batch_report.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/erpnext/stock/report/negative_batch_report/test_negative_batch_report.py b/erpnext/stock/report/negative_batch_report/test_negative_batch_report.py index ccb80e340f2..16d50fa27c3 100644 --- a/erpnext/stock/report/negative_batch_report/test_negative_batch_report.py +++ b/erpnext/stock/report/negative_batch_report/test_negative_batch_report.py @@ -14,7 +14,7 @@ class TestNegativeBatchReport(ERPNextTestSuite): frappe._dict( { "company": "_Test Company", - "warehouse": "_Test Warehouse - _TC", + "warehouse": "Stores - _TC", "item_code": item_code, } ) @@ -35,14 +35,14 @@ class TestNegativeBatchReport(ERPNextTestSuite): make_stock_entry( item_code=item, - to_warehouse="_Test Warehouse - _TC", + to_warehouse="Stores - _TC", qty=10, rate=100, posting_date="2026-06-01", ) make_stock_entry( item_code=item, - from_warehouse="_Test Warehouse - _TC", + from_warehouse="Stores - _TC", qty=4, posting_date="2026-06-02", )