Skip to content

Commit 101aefc

Browse files
committed
rm
1 parent 98b5122 commit 101aefc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/unit/test_cli_utils.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -360,7 +360,7 @@ def test_timezone_aware_datetime(self):
360360
"""Test with different timezone for updated_at."""
361361
current_time = datetime(2024, 1, 1, 12, 0, 30, tzinfo=timezone.utc)
362362
finetune_job = create_finetune_response(
363-
created_at="2024-01-01T07:00:00-05:00", # Same as 12:00:00 UTC (EST = UTC-5)
363+
started_at="2024-01-01T07:00:00-05:00", # Same as 12:00:00 UTC (EST = UTC-5)
364364
progress=FinetuneProgress(estimate_available=True, seconds_remaining=60.0),
365365
)
366366

@@ -386,7 +386,7 @@ def test_negative_elapsed_time_scenario(self):
386386
"""Test unusual case where current time appears before updated_at."""
387387
current_time = datetime(2024, 1, 1, 12, 0, 0, tzinfo=timezone.utc)
388388
finetune_job = create_finetune_response(
389-
created_at="2024-01-01T12:00:30Z", # In the "future"
389+
started_at="2024-01-01T12:00:30Z", # In the "future"
390390
progress=FinetuneProgress(estimate_available=True, seconds_remaining=100.0),
391391
)
392392

0 commit comments

Comments
 (0)