Skip to content

Commit 1e5d347

Browse files
committed
more test fixes
1 parent 90a391a commit 1e5d347

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/jobs/test_jobs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ def test_post_job(provider, get_client, basic_auth_header, get_session: Session)
2929
},
3030
)
3131
statement = select(Job).where(Job.id == res.json()["id"])
32-
job_inst: Job = get_session.exec(statement).first()
32+
job_inst: Job | None = get_session.exec(statement).first()
3333

3434
assert job_inst is not None
3535
assert job_inst.provider == provider

0 commit comments

Comments
 (0)