Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
chriseclectic committed May 30, 2024
1 parent 7f25cab commit c24f921
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/terra/states/test_aer_statevector.py
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ def test_two_qubit_QV(self):
"""Test two qubit QuantumVolume"""
state = AerStatevector(QuantumVolume(2))
counts = state.sample_counts(shots=1024)
self.assertEqual(sum(counts.values(), 1024))
self.assertEqual(sum(counts.values()), 1024)

def test_evolve(self):
"""Test method and device properties"""
Expand Down

0 comments on commit c24f921

Please sign in to comment.