Skip to content

Commit

Permalink
improve tests
Browse files Browse the repository at this point in the history
  • Loading branch information
fedonman committed Oct 24, 2024
1 parent 49f4436 commit 40342e5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/instruments/qblox/test_qblox_qcm.py
Original file line number Diff line number Diff line change
Expand Up @@ -249,10 +249,10 @@ def test_get_parameter_raises_error(self, qcm: QbloxQCM):

def test_set_markers_override_enabled(self, qcm: QbloxQCM):
qcm.set_markers_override_enabled(value=True, sequencer_id=0)
qcm.device.sequencers[0].marker_ovr_en.assert_called_once_with(True)
qcm.device.sequencers[0].marker_ovr_en.assert_called_with(True)

qcm.set_markers_override_enabled(value=False, sequencer_id=0)
qcm.device.sequencers[0].marker_ovr_en.assert_called_once_with(False)
qcm.device.sequencers[0].marker_ovr_en.assert_called_with(False)

def test_set_markers_override_value(self, qcm: QbloxQCM):
qcm.set_markers_override_value(value=123, sequencer_id=0)
Expand Down

0 comments on commit 40342e5

Please sign in to comment.