Skip to content

Commit

Permalink
change qml.load to qml.from_qiskit (#492)
Browse files Browse the repository at this point in the history
  • Loading branch information
astralcai authored Mar 8, 2024
1 parent 8853de7 commit b8b940d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_integration.py
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ def test_load_qiskit_circuit(self):
qc = qiskit.QuantumCircuit(2)
qc.rx(theta, 0)

my_template = qml.load(qc, format="qiskit")
my_template = qml.from_qiskit(qc)

dev = qml.device("default.qubit", wires=2)

Expand Down

0 comments on commit b8b940d

Please sign in to comment.