Skip to content

Commit

Permalink
changing RoughFrequencyCal qubit argument to a list (#271)
Browse files Browse the repository at this point in the history
  • Loading branch information
DanPuzzuoli authored Oct 18, 2023
1 parent c6de909 commit c595d8d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/dynamics/backend/test_qiskit_experiments.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ def test_RoughFrequencyCal_calibration(self):
frequencies = np.linspace(freq_estimate - 1e-2, freq_estimate + 1e-2, 51)

self.simple_backend.set_options(seed_simulator=5243234)
spec = RoughFrequencyCal(0, cals, frequencies, backend=self.simple_backend)
spec = RoughFrequencyCal([0], cals, frequencies, backend=self.simple_backend)
spec.set_experiment_options(amp=0.05, sigma=80, duration=320)

spec_data = spec.run().block_for_results()
Expand Down

0 comments on commit c595d8d

Please sign in to comment.