Skip to content

Commit

Permalink
fix export sympy circuit test
Browse files Browse the repository at this point in the history
  • Loading branch information
dakk committed Jul 9, 2024
1 parent 08ee841 commit 53cbc19
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/test_qcircuit_exporters.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ def test_export_qasm_circuit(self):
[
(cx_circuit(), [(Qubit("11"), 1)]),
(ccx_circuit(), [(Qubit("111"), 1)]),
(bell_circuit(), [(Qubit("00"), 1 / 2), (Qubit("11"), 1 / 2)]),
(bell_circuit(), [(Qubit("00"), 0.5), (Qubit("11"), 0.5)]),
# (qft_circuit(), [(Qubit("000"), 1)]),
],
)
Expand Down

0 comments on commit 53cbc19

Please sign in to comment.