Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
MarquessV committed Aug 13, 2024
1 parent 8ae1683 commit ccf0dac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/unit/test_quilbase.py
Original file line number Diff line number Diff line change
Expand Up @@ -910,7 +910,7 @@ def test_convert(self, delay_qubits: DelayQubits):
def test_pickle(self, delay_qubits: DelayQubits):
pickled = pickle.dumps(delay_qubits)
unpickled = pickle.loads(pickled)
assert isinstance(unickled, DelayQubits)
assert isinstance(unpickled, DelayQubits)
assert unpickled == delay_qubits


Expand Down

0 comments on commit ccf0dac

Please sign in to comment.