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)