Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
mtreinish committed Feb 23, 2024
1 parent 5d4e38f commit 9aa2bc5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion qiskit_neko/tests/circuits/test_execute.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ def test_bell_execute_default_shots(self):
circuit.cx(0, 1)
circuit.measure_all()
expected_count = self.backend.options.shots / 2
job = self.backends.run(transpile(circuit, self.backend))
job = self.backend.run(transpile(circuit, self.backend))
result = job.result()
counts = result.get_counts()
delta = 10 ** (math.log10(self.backend.options.shots) - 1)
Expand Down

0 comments on commit 9aa2bc5

Please sign in to comment.