Skip to content

Commit

Permalink
Fix typo (#1673)
Browse files Browse the repository at this point in the history
  • Loading branch information
kt474 authored May 10, 2024
1 parent 4b938ed commit 1f6922c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/integration/test_ibm_job.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ def test_retrieve_pending_jobs(self):
pending_job_list = self.service.jobs(program_id="sampler", limit=3, pending=True)
for job in pending_job_list:
self.assertTrue(
job.status() in ["QUEUED", "RUNNING", JobStatus.QUEUED, JobStatus.Running]
job.status() in ["QUEUED", "RUNNING", JobStatus.QUEUED, JobStatus.RUNNING]
)

def test_retrieve_job(self):
Expand Down

0 comments on commit 1f6922c

Please sign in to comment.