Skip to content

Commit

Permalink
fix assertion
Browse files Browse the repository at this point in the history
  • Loading branch information
austingmhuang committed Jul 11, 2024
1 parent 0f7356a commit e45ae5e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_base_device.py
Original file line number Diff line number Diff line change
Expand Up @@ -759,7 +759,7 @@ def qiskit_circuit(x):
assert tracker.history["shots"] == qiskit_tracker.history["shots"]
assert np.allclose(qiskit_tracker.history["results"], tracker.history["results"], atol=0.1)
assert np.shape(qiskit_tracker.history["results"]) == np.shape(tracker.history["results"])
assert tracker.history["resources"][0] == tracker.history["resources"][0]
assert qiskit_tracker.history["resources"][0] == tracker.history["resources"][0]

def test_tracker_single_tape(self):
"""Test that the tracker works for a single tape"""
Expand Down

0 comments on commit e45ae5e

Please sign in to comment.