@@ -17,7 +17,7 @@ def test_list_jobs(httpx_mock, client: UnstructuredClient, platform_api_url: str
1717 {
1818 "created_at" : "2025-06-22T11:37:21.648Z" ,
1919 "id" : "fcdc4994-eea5-425c-91fa-e03f2bd8030d" ,
20- "status" : "active " ,
20+ "status" : "IN_PROGRESS " ,
2121 "runtime" : None ,
2222 "workflow_id" : "16b80fee-64dc-472d-8f26-1d7729b6423d" ,
2323 "workflow_name" : "test_workflow" ,
@@ -40,7 +40,7 @@ def test_list_jobs(httpx_mock, client: UnstructuredClient, platform_api_url: str
4040 assert job .id == "fcdc4994-eea5-425c-91fa-e03f2bd8030d"
4141 assert job .workflow_id == "16b80fee-64dc-472d-8f26-1d7729b6423d"
4242 assert job .workflow_name == "test_workflow"
43- assert job .status == "active "
43+ assert job .status == "IN_PROGRESS "
4444 assert job .created_at == datetime .fromisoformat ("2025-06-22T11:37:21.648+00:00" )
4545
4646
@@ -53,7 +53,7 @@ def test_get_job(httpx_mock, client: UnstructuredClient, platform_api_url: str):
5353 json = {
5454 "created_at" : "2025-06-22T11:37:21.648Z" ,
5555 "id" : "fcdc4994-eea5-425c-91fa-e03f2bd8030d" ,
56- "status" : "active " ,
56+ "status" : "SCHEDULED " ,
5757 "runtime" : None ,
5858 "workflow_id" : "16b80fee-64dc-472d-8f26-1d7729b6423d" ,
5959 "workflow_name" : "test_workflow" ,
@@ -76,7 +76,7 @@ def test_get_job(httpx_mock, client: UnstructuredClient, platform_api_url: str):
7676 assert job .id == "fcdc4994-eea5-425c-91fa-e03f2bd8030d"
7777 assert job .workflow_id == "16b80fee-64dc-472d-8f26-1d7729b6423d"
7878 assert job .workflow_name == "test_workflow"
79- assert job .status == "active "
79+ assert job .status == "SCHEDULED "
8080 assert job .created_at == datetime .fromisoformat ("2025-06-22T11:37:21.648+00:00" )
8181
8282
0 commit comments