From 9aa2bc57678b4bb55b04b49a290b80266868f078 Mon Sep 17 00:00:00 2001 From: Matthew Treinish Date: Fri, 23 Feb 2024 07:39:38 -0500 Subject: [PATCH] Fix typo --- qiskit_neko/tests/circuits/test_execute.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qiskit_neko/tests/circuits/test_execute.py b/qiskit_neko/tests/circuits/test_execute.py index 67da338..75004bf 100644 --- a/qiskit_neko/tests/circuits/test_execute.py +++ b/qiskit_neko/tests/circuits/test_execute.py @@ -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)