Skip to content

Commit

Permalink
allow longer queue
Browse files Browse the repository at this point in the history
  • Loading branch information
cqc-melf committed Dec 19, 2024
1 parent 7e7db89 commit 5d4309d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/backend_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -197,13 +197,13 @@ def test_quantinuum_option_params(azure_backend: AzureBackend) -> None:
c = Circuit(2, 2).H(0).CX(0, 1).measure_all()
b = azure_backend
c1 = b.get_compiled_circuit(c)
if b.is_available() and b.average_queue_time_s() < 60:
if b.is_available() and b.average_queue_time_s() < 600:
h = b.process_circuit(c1, n_shots=1000, option_params={"error_model": False}) # type: ignore
r = b.get_result(h, timeout=1200)
counts = r.get_counts()
assert all(x[0] == x[1] for x in counts)
assert any(x[0] == 1 for x in counts)
else:
raise ValueError(
"quantinuum.sim.h1-1e unavailable or queue time >= 60s: not submitting"
"quantinuum.sim.h1-1e unavailable or queue time >= 600s: not submitting"
)

0 comments on commit 5d4309d

Please sign in to comment.