Skip to content

Commit cd54c8c

Browse files
committed
fix tests
1 parent fe0d65a commit cd54c8c

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

tests/conftest.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,6 @@ def post_process_execute(
6262
process_id: str,
6363
execution_content: models.Execute,
6464
request: fastapi.Request,
65-
response: fastapi.Response,
6665
) -> models.StatusInfo:
6766
status_info = models.StatusInfo(
6867
jobID=1, status=models.StatusCode.accepted, type=models.JobType.process
@@ -77,7 +76,7 @@ def get_jobs(self) -> List[models.StatusInfo]:
7776
]
7877
return jobs_list
7978

80-
def get_job(self, job_id: str, response: fastapi.Response) -> models.StatusInfo:
79+
def get_job(self, job_id: str) -> models.StatusInfo:
8180
status_info = models.StatusInfo(
8281
jobID=1, status=models.StatusCode.running, type=models.JobType.process
8382
)

0 commit comments

Comments
 (0)