Skip to content

Commit a71144c

Browse files
committed
clean up
1 parent 441387c commit a71144c

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

tests/extra/test_job_management.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -648,7 +648,7 @@ def test_status_logging(self, tmp_path, job_manager, job_manager_root_dir, sleep
648648

649649

650650
@pytest.mark.parametrize(
651-
["create_time", "start_time", "running_start_time", "end_time", "end_status", "cancel_after_seconds", "expected_status"],
651+
["create_time", "start_time", "running_start_time", "end_time", "end_status", "cancel_after_seconds"],
652652
[
653653
# Scenario 1: Missing running_start_time (None)
654654
(
@@ -658,7 +658,6 @@ def test_status_logging(self, tmp_path, job_manager, job_manager_root_dir, sleep
658658
"2024-09-01T20:00:00Z", # Job end time
659659
"finished", # Job final status
660660
6 * 60 * 60, # Cancel after 6 hours
661-
"finished", # Expected final status
662661
),
663662
# Scenario 2: NaN running_start_time
664663
(
@@ -668,7 +667,6 @@ def test_status_logging(self, tmp_path, job_manager, job_manager_root_dir, sleep
668667
"2024-09-01T20:00:00Z", # Job end time
669668
"finished", # Job final status
670669
6 * 60 * 60, # Cancel after 6 hours
671-
"finished", # Expected final status
672670
),
673671
]
674672
)
@@ -682,7 +680,6 @@ def test_ensure_running_start_time_is_datetime(
682680
end_time,
683681
end_status,
684682
cancel_after_seconds,
685-
expected_status,
686683
dummy_backend_foo,
687684
job_manager_root_dir,
688685
):

0 commit comments

Comments
 (0)