From f73c3a1166719e4955414ef72e98350684452aa4 Mon Sep 17 00:00:00 2001 From: souplearn Date: Sat, 25 Jul 2026 04:57:56 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E6=AD=A3=E7=9C=8B=E6=9D=BF?= =?UTF-8?q?=E5=BD=92=E5=B1=9E=E5=B7=A5=E8=B5=84=E6=B5=8B=E8=AF=95=E5=8F=A3?= =?UTF-8?q?=E5=BE=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tests/test_dashboard_allocations.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/test_dashboard_allocations.py b/tests/test_dashboard_allocations.py index 6d22f2c..f1b9d46 100644 --- a/tests/test_dashboard_allocations.py +++ b/tests/test_dashboard_allocations.py @@ -60,7 +60,7 @@ def test_dashboard_rows_from_allocations_groups_by_allocation_date_desc(): defect_qty=0, scrap_qty=0, changeover_count=1, - reference_wage=350, + reference_wage=700, ), SimpleNamespace( report=report, @@ -74,7 +74,7 @@ def test_dashboard_rows_from_allocations_groups_by_allocation_date_desc(): defect_qty=0, scrap_qty=0, changeover_count=1, - reference_wage=300, + reference_wage=600, ), ] @@ -94,7 +94,7 @@ def test_dashboard_rows_from_allocations_groups_by_allocation_date_desc(): assert current.total_defect_qty == 0 assert current.total_output_qty == 300 assert current.changeover_count == 1 - assert current.reference_wage == 300 + assert current.reference_wage == 600 assert previous.effective_minutes == 350 assert previous.shift_day_minutes == 0 @@ -104,7 +104,7 @@ def test_dashboard_rows_from_allocations_groups_by_allocation_date_desc(): assert previous.total_defect_qty == 0 assert previous.total_output_qty == 350 assert previous.changeover_count == 1 - assert previous.reference_wage == 350 + assert previous.reference_wage == 700 def test_export_dashboard_rows_writes_allocation_and_source_dates_with_warning_columns():