Skip to content

Commit

Permalink
update number of bits in result to fix test (#495)
Browse files Browse the repository at this point in the history
  • Loading branch information
cqc-melf authored Sep 30, 2024
1 parent 065daf0 commit fa7529e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/integration/backend_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -1044,7 +1044,7 @@ def test_qir_submission_mz_to_reg_qa(
h = b.submit_program(Language.QIR, b64encode(ir).decode("utf-8"), n_shots=10)
r = b.get_result(h)
assert len(r.get_shots()) == 10
assert len(r.get_bitlist()) == 128
assert len(r.get_bitlist()) == 20


@pytest.mark.skipif(skip_remote_tests, reason=REASON)
Expand Down

0 comments on commit fa7529e

Please sign in to comment.